chore(release): release v0.21.11
This commit is contained in:
parent
27d43eee28
commit
2733e513d2
@ -1,7 +0,0 @@
|
|||||||
---
|
|
||||||
"@hera/plugin-rental": patch
|
|
||||||
"@nocobase/client": patch
|
|
||||||
"@nocobase/utils": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
support fuzzy search in cascader
|
|
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"@hera/plugin-rental": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
结算单增加订单数量字段
|
|
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"@hera/plugin-rental": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
合同结算单结束时间取当天的结束时间
|
|
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
"@hera/plugin-mobile": patch
|
|
||||||
---
|
|
||||||
|
|
||||||
修改mobile组件同名切换问题,文本切换阈值,时间范围
|
|
23
Dockerfile
23
Dockerfile
@ -1,13 +1,18 @@
|
|||||||
FROM node:20-bullseye as builder
|
FROM node:20-bullseye-slim as base
|
||||||
ARG VERDACCIO_URL=https://npm.daoyoucloud.com/
|
RUN apt-get update && apt-get install -y nginx
|
||||||
|
RUN rm -rf /etc/nginx/sites-enabled/default
|
||||||
|
COPY ./docker/nocobase/nocobase.conf /etc/nginx/sites-enabled/nocobase.conf
|
||||||
|
|
||||||
|
FROM node:20-bullseye as build-template-app
|
||||||
|
ARG NPM_REGISTRY=https://registry.npmjs.org/
|
||||||
|
|
||||||
ENV PNPM_HOME="/pnpm"
|
ENV PNPM_HOME="/pnpm"
|
||||||
ENV PATH="$PNPM_HOME:$PATH"
|
ENV PATH="$PNPM_HOME:$PATH"
|
||||||
RUN corepack enable
|
RUN corepack enable
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
RUN cd /app && npx --registry $VERDACCIO_URL create-nocobase-app@0.21.6 my-nocobase-app -a -e APP_ENV=production
|
RUN cd /app && npx --registry $NPM_REGISTRY create-tachybase-app@0.21.11 my-nocobase-app -a -e APP_ENV=production
|
||||||
RUN pnpm config set registry $VERDACCIO_URL
|
RUN pnpm config set registry $NPM_REGISTRY
|
||||||
RUN --mount=type=cache,id=pnpm,target=/pnpm/store cd /app/my-nocobase-app && pnpm install --production
|
RUN --mount=type=cache,id=pnpm,target=/pnpm/store cd /app/my-nocobase-app && pnpm install --production
|
||||||
|
|
||||||
WORKDIR /app/my-nocobase-app
|
WORKDIR /app/my-nocobase-app
|
||||||
@ -17,12 +22,8 @@ RUN cd /app \
|
|||||||
&& rm -rf nocobase.tar.gz \
|
&& rm -rf nocobase.tar.gz \
|
||||||
&& tar -zcf ./nocobase.tar.gz -C /app/my-nocobase-app .
|
&& tar -zcf ./nocobase.tar.gz -C /app/my-nocobase-app .
|
||||||
|
|
||||||
|
FROM base AS build-app
|
||||||
FROM node:20-bullseye-slim
|
COPY --from=build-template-app /app/nocobase.tar.gz /app/nocobase.tar.gz
|
||||||
RUN apt-get update && apt-get install -y nginx
|
|
||||||
RUN rm -rf /etc/nginx/sites-enabled/default
|
|
||||||
COPY ./docker/nocobase/nocobase.conf /etc/nginx/sites-enabled/nocobase.conf
|
|
||||||
COPY --from=builder /app/nocobase.tar.gz /app/nocobase.tar.gz
|
|
||||||
|
|
||||||
WORKDIR /app/nocobase
|
WORKDIR /app/nocobase
|
||||||
|
|
||||||
@ -33,6 +34,6 @@ COPY ./docker/nocobase/docker-entrypoint.sh /app/
|
|||||||
ENV PNPM_HOME="/pnpm"
|
ENV PNPM_HOME="/pnpm"
|
||||||
ENV PATH="$PNPM_HOME:$PATH"
|
ENV PATH="$PNPM_HOME:$PATH"
|
||||||
RUN corepack enable
|
RUN corepack enable
|
||||||
RUN pnpm config set registry $VERDACCIO_URL
|
RUN pnpm config set registry $NPM_REGISTRY
|
||||||
|
|
||||||
CMD ["/app/docker-entrypoint.sh"]
|
CMD ["/app/docker-entrypoint.sh"]
|
||||||
|
@ -1,43 +0,0 @@
|
|||||||
FROM node:18-bullseye-slim as builder
|
|
||||||
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
RUN cd /app \
|
|
||||||
&& yarn config set network-timeout 600000 -g \
|
|
||||||
&& yarn create nocobase-app my-nocobase-app -a -e APP_ENV=production \
|
|
||||||
&& cd /app/my-nocobase-app \
|
|
||||||
&& yarn install --production
|
|
||||||
|
|
||||||
RUN cd /app \
|
|
||||||
&& rm -rf nocobase.tar.gz \
|
|
||||||
&& tar -zcf ./nocobase.tar.gz -C /app/my-nocobase-app .
|
|
||||||
|
|
||||||
FROM node:18-bullseye-slim
|
|
||||||
|
|
||||||
# COPY ./sources.list /etc/apt/sources.list
|
|
||||||
RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
|
|
||||||
&& case "${dpkgArch##*-}" in \
|
|
||||||
amd64) ARCH='x64';; \
|
|
||||||
ppc64el) ARCH='ppc64le';; \
|
|
||||||
s390x) ARCH='s390x';; \
|
|
||||||
arm64) ARCH='arm64';; \
|
|
||||||
armhf) ARCH='armv7l';; \
|
|
||||||
i386) ARCH='x86';; \
|
|
||||||
*) echo "unsupported architecture"; exit 1 ;; \
|
|
||||||
esac \
|
|
||||||
&& set -ex \
|
|
||||||
# libatomic1 for arm
|
|
||||||
&& apt-get update && apt-get install -y nginx
|
|
||||||
|
|
||||||
RUN rm -rf /etc/nginx/sites-enabled/default
|
|
||||||
COPY --from=builder /app/nocobase.tar.gz /app/nocobase.tar.gz
|
|
||||||
|
|
||||||
WORKDIR /app/nocobase
|
|
||||||
|
|
||||||
COPY docker-entrypoint.sh /app/
|
|
||||||
# COPY docker-entrypoint.sh /usr/local/bin/
|
|
||||||
# ENTRYPOINT ["docker-entrypoint.sh"]
|
|
||||||
|
|
||||||
EXPOSE 80/tcp
|
|
||||||
|
|
||||||
CMD ["/app/docker-entrypoint.sh"]
|
|
@ -1,8 +0,0 @@
|
|||||||
deb http://mirrors.aliyun.com/debian/ stretch main non-free contrib
|
|
||||||
deb-src http://mirrors.aliyun.com/debian/ stretch main non-free contrib
|
|
||||||
deb http://mirrors.aliyun.com/debian-security stretch/updates main
|
|
||||||
deb-src http://mirrors.aliyun.com/debian-security stretch/updates main
|
|
||||||
deb http://mirrors.aliyun.com/debian/ stretch-updates main non-free contrib
|
|
||||||
deb-src http://mirrors.aliyun.com/debian/ stretch-updates main non-free contrib
|
|
||||||
#deb http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib
|
|
||||||
#deb-src http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib
|
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "tachybase",
|
"name": "tachybase",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"private": true,
|
"private": true,
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/acl",
|
"name": "@nocobase/acl",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "",
|
"description": "",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/actions",
|
"name": "@nocobase/actions",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "",
|
"description": "",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/app",
|
"name": "@nocobase/app",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "",
|
"description": "",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/auth",
|
"name": "@nocobase/auth",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "",
|
"description": "",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/build",
|
"name": "@nocobase/build",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Library build tool based on rollup.",
|
"description": "Library build tool based on rollup.",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
|
2
packages/core/cache/package.json
vendored
2
packages/core/cache/package.json
vendored
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/cache",
|
"name": "@nocobase/cache",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "",
|
"description": "",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tachybase/cli",
|
"name": "@tachybase/cli",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "",
|
"description": "",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
@ -19,6 +19,7 @@
|
|||||||
"@nocobase/utils": "workspace:*",
|
"@nocobase/utils": "workspace:*",
|
||||||
"@types/fs-extra": "^11.0.1",
|
"@types/fs-extra": "^11.0.1",
|
||||||
"@umijs/utils": "3.5.20",
|
"@umijs/utils": "3.5.20",
|
||||||
|
"axios": "^1.6.8",
|
||||||
"chalk": "^5.3.0",
|
"chalk": "^5.3.0",
|
||||||
"commander": "^12.0.0",
|
"commander": "^12.0.0",
|
||||||
"dotenv": "^16.0.0",
|
"dotenv": "^16.0.0",
|
||||||
|
@ -44,7 +44,8 @@ const configs = defineConfig([
|
|||||||
dir: 'dist',
|
dir: 'dist',
|
||||||
format: 'esm',
|
format: 'esm',
|
||||||
entryFileNames: '[name].mjs',
|
entryFileNames: '[name].mjs',
|
||||||
chunkFileNames: 'chunk-[name].mjs',
|
preserveModules: true,
|
||||||
|
preserveModulesRoot: './src',
|
||||||
},
|
},
|
||||||
external,
|
external,
|
||||||
plugins,
|
plugins,
|
||||||
@ -58,6 +59,8 @@ if (!process.env.BUILD_NO_DTS) {
|
|||||||
output: {
|
output: {
|
||||||
dir: 'dist',
|
dir: 'dist',
|
||||||
entryFileNames: '[name].d.ts',
|
entryFileNames: '[name].d.ts',
|
||||||
|
preserveModules: true,
|
||||||
|
preserveModulesRoot: './src',
|
||||||
format: 'esm',
|
format: 'esm',
|
||||||
},
|
},
|
||||||
external,
|
external,
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
import { resolve } from 'path';
|
import { resolve } from 'path';
|
||||||
import { Command } from 'commander';
|
import { Command } from 'commander';
|
||||||
import { readFileSync, writeFileSync } from 'fs';
|
import { readFileSync, writeFileSync } from 'fs';
|
||||||
|
import { URL } from 'url';
|
||||||
|
|
||||||
|
const __dirname = new URL('.', import.meta.url).pathname;
|
||||||
|
|
||||||
export default (cli: Command) => {
|
export default (cli: Command) => {
|
||||||
cli.command('create-nginx-conf').action(async (name, options) => {
|
cli.command('create-nginx-conf').action(async (name, options) => {
|
||||||
|
@ -5,6 +5,9 @@ import { Generator } from '@umijs/utils';
|
|||||||
import { readFile } from 'fs/promises';
|
import { readFile } from 'fs/promises';
|
||||||
import { genTsConfigPaths } from './util';
|
import { genTsConfigPaths } from './util';
|
||||||
import { execa } from 'execa';
|
import { execa } from 'execa';
|
||||||
|
import { URL } from 'url';
|
||||||
|
|
||||||
|
const __dirname = new URL('.', import.meta.url).pathname;
|
||||||
|
|
||||||
function camelize(str: string) {
|
function camelize(str: string) {
|
||||||
return str.trim().replace(/[-_\s]+(.)?/g, (match, c) => c.toUpperCase());
|
return str.trim().replace(/[-_\s]+(.)?/g, (match, c) => c.toUpperCase());
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/client",
|
"name": "@nocobase/client",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"module": "es/index.mjs",
|
"module": "es/index.mjs",
|
||||||
|
@ -1,15 +1,10 @@
|
|||||||
{
|
{
|
||||||
"name": "create-nocobase-app",
|
"name": "create-tachybase-app",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/nocobase/nocobase.git",
|
|
||||||
"directory": "packages/core/create-nocobase-app"
|
|
||||||
},
|
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"main": "src/index.js",
|
"main": "src/index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
"create-nocobase-app": "./bin/index.js"
|
"create-tachybase-app": "./bin/index.js"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@umijs/utils": "3.5.20",
|
"@umijs/utils": "3.5.20",
|
@ -5,16 +5,17 @@
|
|||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"nocobase": "nocobase",
|
"tachybase": "tachybase",
|
||||||
"pm": "nocobase pm",
|
"tb": "tachybase",
|
||||||
"dev": "nocobase dev",
|
"pm": "tachybase pm",
|
||||||
"start": "nocobase start",
|
"dev": "tachybase dev",
|
||||||
"clean": "nocobase clean",
|
"start": "tachybase start",
|
||||||
"build": "nocobase build",
|
"clean": "tachybase clean",
|
||||||
"test": "nocobase test",
|
"build": "tachybase build",
|
||||||
"e2e": "nocobase e2e",
|
"test": "tachybase test",
|
||||||
"tar": "nocobase tar",
|
"e2e": "tachybase e2e",
|
||||||
"postinstall": "nocobase postinstall",
|
"tar": "tachybase tar",
|
||||||
|
"postinstall": "tachybase postinstall",
|
||||||
"lint": "eslint ."
|
"lint": "eslint ."
|
||||||
},
|
},
|
||||||
"resolutions": {
|
"resolutions": {
|
||||||
@ -25,7 +26,7 @@
|
|||||||
"pm2": "^5.2.0",
|
"pm2": "^5.2.0",
|
||||||
"@tachybase/preset-tachybase": "{{{version}}}",
|
"@tachybase/preset-tachybase": "{{{version}}}",
|
||||||
"@nocobase/build": "{{{version}}}",
|
"@nocobase/build": "{{{version}}}",
|
||||||
"@tachycode/cli": "{{{version}}}",
|
"@tachybase/cli": "{{{version}}}",
|
||||||
{{{dependencies}}}
|
{{{dependencies}}}
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
@ -4,4 +4,4 @@
|
|||||||
"target": "ES6",
|
"target": "ES6",
|
||||||
"module": "CommonJS"
|
"module": "CommonJS"
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/data-source-manager",
|
"name": "@nocobase/data-source-manager",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "",
|
"description": "",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/database",
|
"name": "@nocobase/database",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "",
|
"description": "",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/devtools",
|
"name": "@nocobase/devtools",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "",
|
"description": "",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/evaluators",
|
"name": "@nocobase/evaluators",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "",
|
"description": "",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/logger",
|
"name": "@nocobase/logger",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "nocobase logging library",
|
"description": "nocobase logging library",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/resourcer",
|
"name": "@nocobase/resourcer",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "",
|
"description": "",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/schema",
|
"name": "@nocobase/schema",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"types": "lib/index.d.ts",
|
"types": "lib/index.d.ts",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/sdk",
|
"name": "@nocobase/sdk",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"types": "lib/index.d.ts",
|
"types": "lib/index.d.ts",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/server",
|
"name": "@nocobase/server",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"types": "./lib/index.d.ts",
|
"types": "./lib/index.d.ts",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/telemetry",
|
"name": "@nocobase/telemetry",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "nocobase telemetry library",
|
"description": "nocobase telemetry library",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/test",
|
"name": "@nocobase/test",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": {
|
".": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/utils",
|
"name": "@nocobase/utils",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"types": "./lib/index.d.ts",
|
"types": "./lib/index.d.ts",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@hera/plugin-approval",
|
"name": "@hera/plugin-approval",
|
||||||
"displayName": "Workflow: Approval Center",
|
"displayName": "Workflow: Approval Center",
|
||||||
"version": "0.1.1",
|
"version": "0.1.5",
|
||||||
"description": "Can configure a universal approval process to complete the complete approval process in the approval center.",
|
"description": "Can configure a universal approval process to complete the complete approval process in the approval center.",
|
||||||
"main": "dist/server/index.js",
|
"main": "dist/server/index.js",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@hera/plugin-audit-logs",
|
"name": "@hera/plugin-audit-logs",
|
||||||
"displayName": "Audit logs",
|
"displayName": "Audit logs",
|
||||||
"version": "1.0.10",
|
"version": "1.0.14",
|
||||||
"description": "Audit logs.",
|
"description": "Audit logs.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"System management"
|
"System management"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@hera/plugin-core",
|
"name": "@hera/plugin-core",
|
||||||
"displayName": "Hera platform",
|
"displayName": "Hera platform",
|
||||||
"version": "1.7.10",
|
"version": "1.7.14",
|
||||||
"description": "Hera platform as nocobase plugin.",
|
"description": "Hera platform as nocobase plugin.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"System management"
|
"System management"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@hera/plugin-mobile",
|
"name": "@hera/plugin-mobile",
|
||||||
"displayName": "Mobile client: Customization",
|
"displayName": "Mobile client: Customization",
|
||||||
"version": "1.1.2",
|
"version": "1.1.6",
|
||||||
"description": "Provides the ability to configure mobile pages,more professional.",
|
"description": "Provides the ability to configure mobile pages,more professional.",
|
||||||
"main": "dist/server/index.js",
|
"main": "dist/server/index.js",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@hera/plugin-rental",
|
"name": "@hera/plugin-rental",
|
||||||
"displayName": "professional construction materials rental system - customized based on hera",
|
"displayName": "professional construction materials rental system - customized based on hera",
|
||||||
"version": "1.7.14",
|
"version": "1.7.18",
|
||||||
"description": "Offering a standardized leasing management system, encompassing comprehensive administration from materials to contracts to labor personnel, while providing a robust financial management mechanism, and real-time monitoring of the operational capacity of the leasing system.",
|
"description": "Offering a standardized leasing management system, encompassing comprehensive administration from materials to contracts to labor personnel, while providing a robust financial management mechanism, and real-time monitoring of the operational capacity of the leasing system.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"System management"
|
"System management"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-acl",
|
"name": "@nocobase/plugin-acl",
|
||||||
"displayName": "Access control",
|
"displayName": "Access control",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Based on roles, resources, and actions, access control can precisely manage interface configuration permissions, data operation permissions, menu access permissions, and plugin permissions.",
|
"description": "Based on roles, resources, and actions, access control can precisely manage interface configuration permissions, data operation permissions, menu access permissions, and plugin permissions.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Users & permissions"
|
"Users & permissions"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-action-bulk-edit",
|
"name": "@nocobase/plugin-action-bulk-edit",
|
||||||
"displayName": "Action: Batch edit",
|
"displayName": "Action: Batch edit",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Batch edit all records or selected records.",
|
"description": "Batch edit all records or selected records.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Actions"
|
"Actions"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-action-bulk-update",
|
"name": "@nocobase/plugin-action-bulk-update",
|
||||||
"displayName": "Action: Batch update",
|
"displayName": "Action: Batch update",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Batch update all records or selected records.",
|
"description": "Batch update all records or selected records.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Actions"
|
"Actions"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-action-duplicate",
|
"name": "@nocobase/plugin-action-duplicate",
|
||||||
"displayName": "Action: Duplicate record",
|
"displayName": "Action: Duplicate record",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Duplicate a record, you can either duplicate it into a form and edit it before saving it, or you can duplicate it directly to generate a new record.",
|
"description": "Duplicate a record, you can either duplicate it into a form and edit it before saving it, or you can duplicate it directly to generate a new record.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Actions"
|
"Actions"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-action-print",
|
"name": "@nocobase/plugin-action-print",
|
||||||
"displayName": "Action: Print",
|
"displayName": "Action: Print",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Calls the browser's print function to print a record.",
|
"description": "Calls the browser's print function to print a record.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Actions"
|
"Actions"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-api-doc",
|
"name": "@nocobase/plugin-api-doc",
|
||||||
"displayName": "API documentation",
|
"displayName": "API documentation",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "An OpenAPI documentation generator for NocoBase HTTP API.",
|
"description": "An OpenAPI documentation generator for NocoBase HTTP API.",
|
||||||
"homepage": "https://docs.nocobase.com/handbook/api-doc",
|
"homepage": "https://docs.nocobase.com/handbook/api-doc",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-api-keys",
|
"name": "@nocobase/plugin-api-keys",
|
||||||
"displayName": "Auth: API keys",
|
"displayName": "Auth: API keys",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Allows users to use API key to access application's HTTP API",
|
"description": "Allows users to use API key to access application's HTTP API",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Authentication"
|
"Authentication"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-auth",
|
"name": "@nocobase/plugin-auth",
|
||||||
"displayName": "Authentication",
|
"displayName": "Authentication",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "User authentication management, including password, SMS, and support for Single Sign-On (SSO) protocols, with extensibility.",
|
"description": "User authentication management, including password, SMS, and support for Single Sign-On (SSO) protocols, with extensibility.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Authentication"
|
"Authentication"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-backup-restore",
|
"name": "@nocobase/plugin-backup-restore",
|
||||||
"displayName": "App backup & restore",
|
"displayName": "App backup & restore",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Backup and restore applications for scenarios such as application replication, migration, and upgrades.",
|
"description": "Backup and restore applications for scenarios such as application replication, migration, and upgrades.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"System management"
|
"System management"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-calendar",
|
"name": "@nocobase/plugin-calendar",
|
||||||
"displayName": "Calendar",
|
"displayName": "Calendar",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Provides callendar collection template and block for managing date data, typically for date/time related information such as events, appointments, tasks, and so on.",
|
"description": "Provides callendar collection template and block for managing date data, typically for date/time related information such as events, appointments, tasks, and so on.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Collections",
|
"Collections",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-cas",
|
"name": "@nocobase/plugin-cas",
|
||||||
"displayName": "Auth: CAS",
|
"displayName": "Auth: CAS",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "CAS authentication.",
|
"description": "CAS authentication.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Authentication"
|
"Authentication"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-charts",
|
"name": "@nocobase/plugin-charts",
|
||||||
"displayName": "Charts (deprecated)",
|
"displayName": "Charts (deprecated)",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "The plugin has been deprecated, please use the data visualization plugin instead.",
|
"description": "The plugin has been deprecated, please use the data visualization plugin instead.",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"main": "./dist/server/index.js",
|
"main": "./dist/server/index.js",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-china-region",
|
"name": "@nocobase/plugin-china-region",
|
||||||
"displayName": "Administrative divisions of China",
|
"displayName": "Administrative divisions of China",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Provides data and field type for administrative divisions of China.",
|
"description": "Provides data and field type for administrative divisions of China.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Fields"
|
"Fields"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-client",
|
"name": "@nocobase/plugin-client",
|
||||||
"displayName": "WEB client",
|
"displayName": "WEB client",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Provides a client interface for the NocoBase server",
|
"description": "Provides a client interface for the NocoBase server",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"main": "./dist/server/index.js",
|
"main": "./dist/server/index.js",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-collection-manager",
|
"name": "@nocobase/plugin-collection-manager",
|
||||||
"displayName": "Data source: Main",
|
"displayName": "Data source: Main",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "NocoBase main database, supports relational databases such as MySQL, PostgreSQL, SQLite and so on.",
|
"description": "NocoBase main database, supports relational databases such as MySQL, PostgreSQL, SQLite and so on.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Data sources"
|
"Data sources"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-custom-request",
|
"name": "@nocobase/plugin-custom-request",
|
||||||
"displayName": "Action: Custom request",
|
"displayName": "Action: Custom request",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Sending a request to any HTTP service supports sending context data to the target service.",
|
"description": "Sending a request to any HTTP service supports sending context data to the target service.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Actions"
|
"Actions"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-data-source-manager",
|
"name": "@nocobase/plugin-data-source-manager",
|
||||||
"displayName": "Data source manager",
|
"displayName": "Data source manager",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Manage data sources, including the built-in Master database, external databases, APIs, etc.",
|
"description": "Manage data sources, including the built-in Master database, external databases, APIs, etc.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Data model tools"
|
"Data model tools"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-data-visualization",
|
"name": "@nocobase/plugin-data-visualization",
|
||||||
"displayName": "Data visualization",
|
"displayName": "Data visualization",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Provides data visualization feature, including chart block and chart filter block, support line charts, area charts, bar charts and more than a dozen kinds of charts, you can also extend more chart types.",
|
"description": "Provides data visualization feature, including chart block and chart filter block, support line charts, area charts, bar charts and more than a dozen kinds of charts, you can also extend more chart types.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Blocks"
|
"Blocks"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-disable-pm-add",
|
"name": "@nocobase/plugin-disable-pm-add",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"system"
|
"system"
|
||||||
],
|
],
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-error-handler",
|
"name": "@nocobase/plugin-error-handler",
|
||||||
"displayName": "Error handler",
|
"displayName": "Error handler",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Handling application errors and exceptions.",
|
"description": "Handling application errors and exceptions.",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-export",
|
"name": "@nocobase/plugin-export",
|
||||||
"displayName": "Action: Export records",
|
"displayName": "Action: Export records",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Export filtered records to excel, you can configure which fields to export.",
|
"description": "Export filtered records to excel, you can configure which fields to export.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Actions"
|
"Actions"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-file-manager",
|
"name": "@nocobase/plugin-file-manager",
|
||||||
"displayName": "File manager",
|
"displayName": "File manager",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Provides files storage services with files collection template and attachment field.",
|
"description": "Provides files storage services with files collection template and attachment field.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Collections",
|
"Collections",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-formula-field",
|
"name": "@nocobase/plugin-formula-field",
|
||||||
"displayName": "Collection field: Formula",
|
"displayName": "Collection field: Formula",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Configure and store the results of calculations between multiple field values in the same record, supporting both Math.js and Excel formula functions.",
|
"description": "Configure and store the results of calculations between multiple field values in the same record, supporting both Math.js and Excel formula functions.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Collection fields"
|
"Collection fields"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-gantt",
|
"name": "@nocobase/plugin-gantt",
|
||||||
"displayName": "Block: Gantt",
|
"displayName": "Block: Gantt",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Provides Gantt block.",
|
"description": "Provides Gantt block.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Blocks"
|
"Blocks"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-graph-collection-manager",
|
"name": "@nocobase/plugin-graph-collection-manager",
|
||||||
"displayName": "Graph collection manager",
|
"displayName": "Graph collection manager",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "An ER diagram-like tool. Currently only the Master database is supported.",
|
"description": "An ER diagram-like tool. Currently only the Master database is supported.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Data model tools"
|
"Data model tools"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-iframe-block",
|
"name": "@nocobase/plugin-iframe-block",
|
||||||
"displayName": "Block: iframe",
|
"displayName": "Block: iframe",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Create an iframe block on the page to embed and display external web pages or content.",
|
"description": "Create an iframe block on the page to embed and display external web pages or content.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Blocks"
|
"Blocks"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-import",
|
"name": "@nocobase/plugin-import",
|
||||||
"displayName": "Action: Import records",
|
"displayName": "Action: Import records",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Import records using excel templates. You can configure which fields to import and templates will be generated automatically.",
|
"description": "Import records using excel templates. You can configure which fields to import and templates will be generated automatically.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Actions"
|
"Actions"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-kanban",
|
"name": "@nocobase/plugin-kanban",
|
||||||
"displayName": "Block: Kanban",
|
"displayName": "Block: Kanban",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Provides kanban block.",
|
"description": "Provides kanban block.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Blocks"
|
"Blocks"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-localization-management",
|
"name": "@nocobase/plugin-localization-management",
|
||||||
"displayName": "Localization",
|
"displayName": "Localization",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Allows to manage localization resources of the application.",
|
"description": "Allows to manage localization resources of the application.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"System management"
|
"System management"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-logger",
|
"name": "@nocobase/plugin-logger",
|
||||||
"displayName": "Logger",
|
"displayName": "Logger",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Server-side logs, mainly including API request logs and system runtime logs, and allows to package and download log files.",
|
"description": "Server-side logs, mainly including API request logs and system runtime logs, and allows to package and download log files.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Logging and monitoring"
|
"Logging and monitoring"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-map",
|
"name": "@nocobase/plugin-map",
|
||||||
"displayName": "Block: Map",
|
"displayName": "Block: Map",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Map block, support Gaode map and Google map, you can also extend more map types.",
|
"description": "Map block, support Gaode map and Google map, you can also extend more map types.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Blocks"
|
"Blocks"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-mobile-client",
|
"name": "@nocobase/plugin-mobile-client",
|
||||||
"displayName": "Mobile client",
|
"displayName": "Mobile client",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Provides the ability to configure mobile pages.",
|
"description": "Provides the ability to configure mobile pages.",
|
||||||
"homepage": "https://docs.nocobase.com/handbook/mobile-client",
|
"homepage": "https://docs.nocobase.com/handbook/mobile-client",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-mock-collections",
|
"name": "@nocobase/plugin-mock-collections",
|
||||||
"displayName": "mock-collections",
|
"displayName": "mock-collections",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "mock-collections",
|
"description": "mock-collections",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"main": "./dist/server/index.js",
|
"main": "./dist/server/index.js",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-multi-app-manager",
|
"name": "@nocobase/plugin-multi-app-manager",
|
||||||
"displayName": "Multi-app manager",
|
"displayName": "Multi-app manager",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "Dynamically create multiple apps without separate deployments.",
|
"description": "Dynamically create multiple apps without separate deployments.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"system"
|
"system"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@nocobase/plugin-multi-app-share-collection",
|
"name": "@nocobase/plugin-multi-app-share-collection",
|
||||||
"displayName": "Multi-app share collection",
|
"displayName": "Multi-app share collection",
|
||||||
"version": "0.21.7",
|
"version": "0.21.11",
|
||||||
"description": "",
|
"description": "",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"System management"
|
"System management"
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user