Compare commits

...

4 Commits

Author SHA1 Message Date
prastoin 53e072279c fix(server): upgrade command datasource throw should not stop upgrade 2025-03-03 12:18:41 +01:00
Etienne a3f5345a65 fix workspace member search (#10613) 2025-03-03 12:15:44 +01:00
prastoin 95fea5a111 chore(all): dump version 2025-03-03 12:14:43 +01:00
Charles Bochet 2b72904d22 Bump version 2025-02-28 20:10:31 +01:00
10 changed files with 12 additions and 13 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "twenty-e2e-testing",
"version": "0.42.0-canary",
"version": "0.43.2",
"description": "",
"author": "",
"private": true,
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "twenty-emails",
"version": "0.42.0-canary",
"version": "0.43.2",
"description": "",
"author": "",
"private": true,
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "twenty-front",
"version": "0.42.0-canary",
"version": "0.43.2",
"private": true,
"type": "module",
"scripts": {
@@ -20,7 +20,7 @@ export const useSearchRecords = () => {
variables: {
searchInput: deferredCommandMenuSearch ?? '',
limit: MAX_SEARCH_RESULTS,
excludedObjectNameSingulars: [],
excludedObjectNameSingulars: ['workspaceMember'],
},
});
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "twenty-server",
"version": "0.42.0-canary",
"version": "0.43.2",
"description": "",
"author": "",
"private": true,
@@ -123,13 +123,12 @@ export abstract class ActiveOrSuspendedWorkspacesMigrationCommandRunner<
`Running command on workspace ${workspaceId} ${index + 1}/${activeWorkspaceIds.length}`,
);
const dataSource =
try {
const dataSource =
await this.twentyORMGlobalManager.getDataSourceForWorkspace(
workspaceId,
false,
);
try {
await this.runOnWorkspace({
options,
workspaceId,
@@ -1,5 +1,5 @@
import { Entity } from '@microsoft/microsoft-graph-types';
import { getLogoUrlFromDomainName } from 'twenty-shared';
import { FieldMetadataType, getLogoUrlFromDomainName } from 'twenty-shared';
import { Brackets } from 'typeorm';
import { ObjectRecord } from 'src/engine/api/graphql/workspace-query-builder/interfaces/object-record.interface';
@@ -109,7 +109,7 @@ export class GlobalSearchService {
objectMetadataItem.labelIdentifierFieldMetadataId
];
if (objectMetadataItem.nameSingular === 'person') {
if (labelIdentifierField.type === FieldMetadataType.FULL_NAME) {
return [
`${labelIdentifierField.name}FirstName`,
`${labelIdentifierField.name}LastName`,
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "twenty-shared",
"version": "0.42.0-canary",
"version": "0.43.2",
"license": "AGPL-3.0",
"main": "./dist/index.js",
"scripts": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "twenty-ui",
"version": "0.42.0-canary",
"version": "0.43.2",
"type": "module",
"main": "./src/index.ts",
"exports": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "twenty-website",
"version": "0.42.0-canary",
"version": "0.43.2",
"private": true,
"scripts": {
"nx": "NX_DEFAULT_PROJECT=twenty-website node ../../node_modules/nx/bin/nx.js",