chore(version): release v0.21.43 (#1118)

Reviewed-on: daoyoucloud/tachybase#1118
This commit is contained in:
sealday 2024-06-05 13:06:46 +08:00
parent 72231f8bf1
commit 9b2404d4ef
122 changed files with 183 additions and 196 deletions

View File

@ -1,6 +1,6 @@
{
"name": "tachybase",
"version": "0.21.42",
"version": "0.21.43",
"private": true,
"license": "Apache-2.0",
"scripts": {

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/acl",
"version": "0.21.42",
"version": "0.21.43",
"description": "",
"license": "Apache-2.0",
"main": "./lib/index.js",

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/actions",
"version": "0.21.42",
"version": "0.21.43",
"description": "",
"license": "Apache-2.0",
"main": "./lib/index.js",

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/app",
"version": "0.21.42",
"version": "0.21.43",
"description": "",
"license": "Apache-2.0",
"main": "./lib/index.js",

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/auth",
"version": "0.21.42",
"version": "0.21.43",
"description": "",
"license": "Apache-2.0",
"main": "./lib/index.js",

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/build",
"version": "0.21.42",
"version": "0.21.43",
"description": "Library build tool based on rollup.",
"license": "Apache-2.0",
"main": "lib/index.js",

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/cache",
"version": "0.21.42",
"version": "0.21.43",
"description": "",
"license": "Apache-2.0",
"main": "./lib/index.js",

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/cli",
"version": "0.21.42",
"version": "0.21.43",
"description": "",
"license": "Apache-2.0",
"type": "module",

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/client",
"version": "0.21.42",
"version": "0.21.43",
"license": "Apache-2.0",
"main": "lib/index.js",
"module": "es/index.mjs",

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/components",
"version": "0.21.42",
"version": "0.21.43",
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@ -1,6 +1,6 @@
{
"name": "create-tachybase-app",
"version": "0.21.42",
"version": "0.21.43",
"license": "Apache-2.0",
"main": "src/index.js",
"bin": {

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/data-source-manager",
"version": "0.21.42",
"version": "0.21.43",
"description": "",
"license": "Apache-2.0",
"main": "./lib/index.js",

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/database",
"version": "0.21.42",
"version": "0.21.43",
"description": "",
"license": "Apache-2.0",
"main": "./lib/index.js",

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/devtools",
"version": "0.21.42",
"version": "0.21.43",
"description": "",
"license": "Apache-2.0",
"main": "./src/index.js",

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/evaluators",
"version": "0.21.42",
"version": "0.21.43",
"description": "",
"license": "Apache-2.0",
"main": "./lib/index.js",

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/logger",
"version": "0.21.42",
"version": "0.21.43",
"description": "logging library",
"license": "Apache-2.0",
"main": "./lib/index.js",

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/resourcer",
"version": "0.21.42",
"version": "0.21.43",
"description": "",
"license": "Apache-2.0",
"main": "./lib/index.js",

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/schema",
"version": "0.21.42",
"version": "0.21.43",
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/sdk",
"version": "0.21.42",
"version": "0.21.43",
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/server",
"version": "0.21.42",
"version": "0.21.43",
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "./lib/index.d.ts",

View File

@ -7,6 +7,6 @@ export default (app: Application) => {
.auth()
.action(async (options) => {
await app.upgrade(options);
app.log.info(`✨ TachyBase has been upgraded to v${app.version.get()}`);
app.log.info(`✨ TachyBase has been upgraded to v${await app.version.get()}`);
});
};

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/telemetry",
"version": "0.21.42",
"version": "0.21.43",
"description": "telemetry library",
"license": "Apache-2.0",
"main": "./lib/index.js",

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/test",
"version": "0.21.42",
"version": "0.21.43",
"license": "Apache-2.0",
"exports": {
".": {

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/utils",
"version": "0.21.42",
"version": "0.21.43",
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "./lib/index.d.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@hera/plugin-approval-mobile",
"version": "0.0.27",
"version": "0.0.28",
"main": "dist/server/index.js",
"devDependencies": {
"@ant-design/icons": "5.x",

View File

@ -1,7 +1,7 @@
{
"name": "@hera/plugin-approval",
"displayName": "Workflow: Approval Center",
"version": "0.1.36",
"version": "0.1.37",
"description": "Can configure a universal approval process to complete the complete approval process in the approval center.",
"keywords": [
"Workflow"

View File

@ -1 +0,0 @@
# @hera/plugin-audit-logs

View File

@ -1,7 +1,7 @@
{
"name": "@hera/plugin-core",
"displayName": "Hera platform",
"version": "1.7.46",
"version": "1.7.47",
"description": "Hera platform",
"keywords": [
"System management"

View File

@ -1,6 +1,6 @@
{
"name": "@hera/plugin-homepage",
"version": "0.0.15",
"version": "0.0.16",
"main": "dist/server/index.js",
"dependencies": {},
"devDependencies": {

View File

@ -1,7 +1,7 @@
{
"name": "@hera/plugin-rental",
"displayName": "professional construction materials rental system - customized based on hera",
"version": "1.7.58",
"version": "1.7.59",
"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": [
"System management"

View File

@ -1,7 +1,7 @@
{
"name": "@hera/plugin-sancongtou",
"displayName": "Mobile client: Sancongtou Customization",
"version": "0.0.20",
"version": "0.0.21",
"description": "Provide mobile client customization for the sancongtou project.",
"main": "dist/server/index.js",
"dependencies": {

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-acl",
"displayName": "Access control",
"version": "0.21.42",
"version": "0.21.43",
"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": [
"Users & permissions"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-action-bulk-edit",
"displayName": "Action: Batch edit",
"version": "0.21.42",
"version": "0.21.43",
"description": "Batch edit all records or selected records.",
"keywords": [
"Actions"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-action-bulk-update",
"displayName": "Action: Batch update",
"version": "0.21.42",
"version": "0.21.43",
"description": "Batch update all records or selected records.",
"keywords": [
"Actions"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-action-duplicate",
"displayName": "Action: Duplicate record",
"version": "0.21.42",
"version": "0.21.43",
"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": [
"Actions"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-action-print",
"displayName": "Action: Print",
"version": "0.21.42",
"version": "0.21.43",
"description": "Calls the browser's print function to print a record.",
"keywords": [
"Actions"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-api-doc",
"displayName": "API documentation",
"version": "0.21.42",
"version": "0.21.43",
"description": "An OpenAPI documentation generator for TachyBase HTTP API.",
"license": "Apache-2.0",
"main": "./dist/server/index.js",

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-api-keys",
"displayName": "Auth: API keys",
"version": "0.21.42",
"version": "0.21.43",
"description": "Allows users to use API key to access application's HTTP API",
"keywords": [
"Authentication"

View File

@ -0,0 +1 @@
# @tachybase/plugin-audit-logs

View File

@ -1,7 +1,7 @@
{
"name": "@hera/plugin-audit-logs",
"name": "@tachybase/plugin-audit-logs",
"displayName": "Audit logs",
"version": "1.0.45",
"version": "0.21.43",
"description": "Audit logs.",
"keywords": [
"System management"

View File

@ -1,12 +1,14 @@
import { TableOutlined } from '@ant-design/icons';
import { ISchema } from '@tachybase/schema';
import React from 'react';
import {
createTableBlockSchema,
SchemaInitializerItem,
useSchemaInitializer,
useSchemaInitializerItem,
} from '@tachybase/client';
import React from 'react';
import { ISchema } from '@tachybase/schema';
import { TableOutlined } from '@ant-design/icons';
import { useAuditLogsTranslation } from './locale';
export const AuditLogsBlockInitializer = () => {

View File

@ -1,5 +1,6 @@
import React from 'react';
import { ExtendCollectionsProvider, TableBlockProvider } from '@tachybase/client';
import { useAuditChangesCollection, useAuditLogsCollection, useCollectionsCollection } from './collections';
export const AuditLogsBlockProvider: React.FC = ({ children, ...restProps }) => {

View File

@ -1,5 +1,6 @@
import { SchemaComponentOptions } from '@tachybase/client';
import React from 'react';
import { SchemaComponentOptions } from '@tachybase/client';
import { AuditLogsBlockInitializer } from './AuditLogsBlockInitializer';
import { AuditLogsBlockProvider } from './AuditLogsBlockProvider';
import { AuditLogsField } from './components/AuditLogsField';

View File

@ -1,5 +1,5 @@
import { EllipsisWithTooltip, useCompile } from '@tachybase/client';
import React from 'react';
import { EllipsisWithTooltip, useCompile } from '@tachybase/client';
import { observer, useField } from '@tachybase/schema';
export const AuditLogsField = observer(

View File

@ -1,5 +1,5 @@
import { EllipsisWithTooltip, FormProvider, SchemaComponent, useRecord } from '@tachybase/client';
import React from 'react';
import { EllipsisWithTooltip, FormProvider, SchemaComponent, useRecord } from '@tachybase/client';
import { observer, useField } from '@tachybase/schema';
export const AuditLogsValue = observer(

View File

@ -1,8 +1,9 @@
import { ActionInitializer } from '@tachybase/client';
import React from 'react';
import { tval } from '../locale';
import { ActionInitializer } from '@tachybase/client';
import { uid } from '@tachybase/utils/client';
import { tval } from '../locale';
export const AuditLogsViewActionInitializer = () => {
const changes = {
type: 'string',

View File

@ -1,5 +1,4 @@
import { ArrayTable } from '@tachybase/components';
import { observer, useField } from '@tachybase/schema';
import React, { createContext, useContext } from 'react';
import {
ExtendCollectionsProvider,
FormProvider,
@ -9,9 +8,11 @@ import {
useCompile,
useRecord,
} from '@tachybase/client';
import React, { createContext, useContext } from 'react';
import { AuditLogsDesigner } from './AuditLogsDesigner';
import { ArrayTable } from '@tachybase/components';
import { observer, useField } from '@tachybase/schema';
import { tval } from '../locale';
import { AuditLogsDesigner } from './AuditLogsDesigner';
const collection = {
name: 'auditLogs',

View File

@ -1,4 +1,4 @@
import { useField, useFieldSchema } from '@tachybase/schema';
import React from 'react';
import {
GeneralSchemaDesigner,
SchemaSettingsDataScope,
@ -10,7 +10,8 @@ import {
useFormBlockContext,
useTableBlockContext,
} from '@tachybase/client';
import React from 'react';
import { useField, useFieldSchema } from '@tachybase/schema';
import { useAuditLogsTranslation } from '../locale';
export const AuditLogsDesigner = () => {

View File

@ -1,9 +1,11 @@
import { Plugin, SchemaInitializerItemType } from '@tachybase/client';
import { AuditLogsProvider } from './AuditLogsProvider';
import { auditLogsTableActionColumnInitializers } from './initializers/AuditLogsTableActionColumnInitializers';
import { auditLogsTableActionInitializers } from './initializers/AuditLogsTableActionInitializers';
import { auditLogsTableColumnInitializers } from './initializers/AuditLogsTableColumnInitializers';
import { tval } from './locale';
export * from './AuditLogsBlockInitializer';
export * from './AuditLogsProvider';

View File

@ -1,5 +1,6 @@
import { InitializerWithSwitch, useSchemaInitializerItem } from '@tachybase/client';
import React from 'react';
import { InitializerWithSwitch, useSchemaInitializerItem } from '@tachybase/client';
import { tval } from '../locale';
export const AuditLogsTableActionColumnInitializer = () => {

View File

@ -1,7 +1,9 @@
import { MenuOutlined } from '@ant-design/icons';
import { useFieldSchema } from '@tachybase/schema';
import { createDesignable, Resizable, SchemaInitializer, useAPIClient, useDesignable } from '@tachybase/client';
import React from 'react';
import { createDesignable, Resizable, SchemaInitializer, useAPIClient, useDesignable } from '@tachybase/client';
import { useFieldSchema } from '@tachybase/schema';
import { MenuOutlined } from '@ant-design/icons';
import { tval, useAuditLogsTranslation } from '../locale';
export const auditLogsTableActionColumnInitializers = new SchemaInitializer({

View File

@ -1,5 +1,7 @@
import { SchemaInitializer } from '@tachybase/client';
import { tval } from '../locale';
export type { ButtonProps } from 'antd';
export const auditLogsTableActionInitializers = new SchemaInitializer({

View File

@ -1,3 +1,4 @@
import React from 'react';
import {
SchemaInitializer,
SchemaInitializerChildren,
@ -6,7 +7,7 @@ import {
useInheritsTableColumnInitializerFields,
useTableColumnInitializerFields,
} from '@tachybase/client';
import React from 'react';
import { tval, useAuditLogsTranslation } from '../locale';
// 表格列配置

View File

@ -1,7 +1,7 @@
import { i18n, tval as nTval } from '@tachybase/client';
import { useTranslation } from 'react-i18next';
export const NAMESPACE = '@hera/plugin-audit-logs';
export const NAMESPACE = '@tachybase/plugin-audit-logs';
export function lang(key: string) {
return i18n.t(key, { ns: NAMESPACE });

View File

@ -1,4 +1,5 @@
import { uid } from '@tachybase/schema';
import { tval } from './locale';
export const createSchema = () => {

View File

@ -1,5 +1,6 @@
import { Plugin } from '@tachybase/server';
import path from 'path';
import { Plugin } from '@tachybase/server';
import { afterCreate, afterDestroy, afterUpdate } from './hooks';
export default class PluginActionLogs extends Plugin {

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-auth",
"displayName": "Authentication",
"version": "0.21.42",
"version": "0.21.43",
"description": "User authentication management, including password, SMS, and support for Single Sign-On (SSO) protocols, with extensibility.",
"keywords": [
"Authentication"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-backup-restore",
"displayName": "App backup & restore",
"version": "0.21.42",
"version": "0.21.43",
"description": "Backup and restore applications for scenarios such as application replication, migration, and upgrades.",
"keywords": [
"System management"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-calendar",
"displayName": "Calendar",
"version": "0.21.42",
"version": "0.21.43",
"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": [
"Collections",

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-cas",
"displayName": "Auth: CAS",
"version": "0.21.42",
"version": "0.21.43",
"description": "CAS authentication.",
"keywords": [
"Authentication"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-china-region",
"displayName": "Administrative divisions of China",
"version": "0.21.42",
"version": "0.21.43",
"description": "Provides data and field type for administrative divisions of China.",
"keywords": [
"Fields"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-client",
"displayName": "WEB client",
"version": "0.21.42",
"version": "0.21.43",
"description": "Provides a client interface for the TachyBase server",
"license": "Apache-2.0",
"main": "./dist/server/index.js",

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-collection-manager",
"displayName": "Data source: Main",
"version": "0.21.42",
"version": "0.21.43",
"description": "TachyBase main database, supports relational databases such as MySQL, PostgreSQL, SQLite and so on.",
"keywords": [
"Data sources"

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/plugin-comments",
"version": "0.21.42",
"version": "0.21.43",
"main": "dist/server/index.js",
"dependencies": {},
"devDependencies": {

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-custom-request",
"displayName": "Action: Custom request",
"version": "0.21.42",
"version": "0.21.43",
"description": "Sending a request to any HTTP service supports sending context data to the target service.",
"keywords": [
"Actions"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-data-source-manager",
"displayName": "Data source manager",
"version": "0.21.42",
"version": "0.21.43",
"description": "Manage data sources, including the built-in Master database, external databases, APIs, etc.",
"keywords": [
"Data model tools"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-data-visualization",
"displayName": "Data visualization",
"version": "0.21.42",
"version": "0.21.43",
"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": [
"Blocks"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-error-handler",
"displayName": "Error handler",
"version": "0.21.42",
"version": "0.21.43",
"description": "Handling application errors and exceptions.",
"license": "Apache-2.0",
"main": "./dist/server/index.js",

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-export",
"displayName": "Action: Export records",
"version": "0.21.42",
"version": "0.21.43",
"description": "Export filtered records to excel, you can configure which fields to export.",
"keywords": [
"Actions"

View File

@ -1,6 +1,6 @@
{
"name": "@tachybase/plugin-external-data-source",
"version": "0.0.25",
"version": "0.21.43",
"main": "dist/server/index.js",
"dependencies": {
"antd": "5.16.1",

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-field-markdown-vditor",
"displayName": "Collection field: Markdown(Vditor)",
"version": "0.0.19",
"version": "0.21.43",
"description": "Used to store Markdown and render it using Vditor editor, supports common Markdown syntax such as list, code, quote, etc., and supports uploading images, recordings, etc.It also allows for instant rendering, where what you see is what you get.",
"keywords": [
"Collection fields"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-file-manager",
"displayName": "File manager",
"version": "0.21.42",
"version": "0.21.43",
"description": "Provides files storage services with files collection template and attachment field.",
"keywords": [
"Collections",

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-formula-field",
"displayName": "Collection field: Formula",
"version": "0.21.42",
"version": "0.21.43",
"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": [
"Collection fields"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-gantt",
"displayName": "Block: Gantt",
"version": "0.21.42",
"version": "0.21.43",
"description": "Provides Gantt block.",
"keywords": [
"Blocks"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-graph-collection-manager",
"displayName": "Graph collection manager",
"version": "0.21.42",
"version": "0.21.43",
"description": "An ER diagram-like tool. Currently only the Master database is supported.",
"keywords": [
"Data model tools"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-iframe-block",
"displayName": "Block: iframe",
"version": "0.21.42",
"version": "0.21.43",
"description": "Create an iframe block on the page to embed and display external web pages or content.",
"keywords": [
"Blocks"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-import",
"displayName": "Action: Import records",
"version": "0.21.42",
"version": "0.21.43",
"description": "Import records using excel templates. You can configure which fields to import and templates will be generated automatically.",
"keywords": [
"Actions"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-kanban",
"displayName": "Block: Kanban",
"version": "0.21.42",
"version": "0.21.43",
"description": "Provides kanban block.",
"keywords": [
"Blocks"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-localization-management",
"displayName": "Localization",
"version": "0.21.42",
"version": "0.21.43",
"description": "Allows to manage localization resources of the application.",
"keywords": [
"System management"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-logger",
"displayName": "Logger",
"version": "0.21.42",
"version": "0.21.43",
"description": "Server-side logs, mainly including API request logs and system runtime logs, and allows to package and download log files.",
"keywords": [
"Logging and monitoring"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-map",
"displayName": "Block: Map",
"version": "0.21.42",
"version": "0.21.43",
"description": "Map block, support Gaode map and Google map, you can also extend more map types.",
"keywords": [
"Blocks"

View File

@ -1,7 +1,7 @@
{
"name": "@tachybase/plugin-mobile-client",
"displayName": "Mobile client",
"version": "0.21.42",
"version": "0.21.43",
"description": "Provides the ability to configure mobile pages.",
"license": "Apache-2.0",
"main": "./dist/server/index.js",

Some files were not shown because too many files have changed in this diff Show More