Bump current version to 1.23.0 (#19683)

This commit is contained in:
Paul Rastoin
2026-04-14 14:04:44 +02:00
committed by GitHub
parent 1e42be5a44
commit ef328755bb
13 changed files with 20 additions and 204 deletions
@@ -1 +1 @@
export const TWENTY_CURRENT_VERSION = '1.22.0' as const;
export const TWENTY_CURRENT_VERSION = '1.23.0' as const;
@@ -1 +1 @@
export const TWENTY_NEXT_VERSIONS = ['1.23.0'] as const;
export const TWENTY_NEXT_VERSIONS = [] as const;
@@ -1 +1 @@
export const TWENTY_PREVIOUS_VERSIONS = ['1.21.0'] as const;
export const TWENTY_PREVIOUS_VERSIONS = ['1.21.0', '1.22.0'] as const;
@@ -1,3 +1,3 @@
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
exports[`UpgradeSequenceRunnerService — failing sequence (integration) should throw when cursor command is not found in the sequence 1`] = `"Step "RemovedCommand" not found in upgrade sequence. The sequence only covers versions [1.21.0, 1.22.0]. Please upgrade to 1.21.0 first."`;
exports[`UpgradeSequenceRunnerService — failing sequence (integration) should throw when cursor command is not found in the sequence 1`] = `"Step "RemovedCommand" not found in upgrade sequence. The sequence only covers versions [1.21.0, 1.22.0, 1.23.0]. Please upgrade to 1.21.0 first."`;
@@ -39,5 +39,4 @@ export const fromWorkspaceEntityToFlat = (
updatedAt: entity.updatedAt.toISOString(),
deletedAt: entity.deletedAt?.toISOString(),
suspendedAt: entity.suspendedAt?.toISOString() ?? null,
version: entity.version ?? null,
});
@@ -32,7 +32,6 @@ import { KeyValuePairEntity } from 'src/engine/core-modules/key-value-pair/key-v
import { PostgresCredentialsEntity } from 'src/engine/core-modules/postgres-credentials/postgres-credentials.entity';
import { PublicDomainEntity } from 'src/engine/core-modules/public-domain/public-domain.entity';
import { WorkspaceSSOIdentityProviderEntity } from 'src/engine/core-modules/sso/workspace-sso-identity-provider.entity';
import { RemovedSinceVersion } from 'src/engine/core-modules/upgrade/types/removed-since-version.type';
import { UserWorkspaceEntity } from 'src/engine/core-modules/user-workspace/user-workspace.entity';
import { AgentEntity } from 'src/engine/metadata-modules/ai/ai-agent/entities/agent.entity';
import { type ModelId } from 'src/engine/metadata-modules/ai/ai-models/types/model-id.type';
@@ -295,10 +294,6 @@ export class WorkspaceEntity {
@Field(() => RoleDTO, { nullable: true })
defaultRole: RoleDTO | null;
@Field(() => String, { nullable: true })
@Column({ type: 'varchar', nullable: true })
version: RemovedSinceVersion<'1.23.0', string | null>;
@Field(() => String, { nullable: false })
@Column({
type: 'varchar',