Skip to content

Commit b1256ad

Browse files
authored
Merge branch 'release/9.0-staging' => 'release/9.0' (#35078)
2 parents 01ccb27 + 92280e2 commit b1256ad

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

azure-pipelines-public.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ stages:
9393
- job: macOS
9494
enablePublishTestResults: true
9595
pool:
96-
vmImage: macOS-12
96+
vmImage: macOS-13
9797
variables:
9898
# Rely on task Arcade injects, not auto-injected build step.
9999
- skipComponentGovernanceDetection: true

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ extends:
139139
- job: macOS
140140
pool:
141141
name: Azure Pipelines
142-
image: macOS-12
142+
image: macOS-13
143143
os: macOS
144144
variables:
145145
# Rely on task Arcade injects, not auto-injected build step.

test/EFCore.SqlServer.FunctionalTests/Migrations/MigrationsInfrastructureSqlServerTest.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ FROM [__EFMigrationsHistory]
755755
ORDER BY [MigrationId];
756756
757757
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
758-
VALUES (N'00000000000000_Empty', N'9.0.1');
758+
VALUES (N'00000000000000_Empty', N'7.0.0-test');
759759
760760
--Before
761761
@@ -798,18 +798,18 @@ CONSTRAINT [PK_Blogs] PRIMARY KEY ([Id])
798798
END
799799
800800
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
801-
VALUES (N'00000000000001_Migration1', N'9.0.1');
801+
VALUES (N'00000000000001_Migration1', N'7.0.0-test');
802802
803803
--After
804804
805805
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
806-
VALUES (N'00000000000002_Migration2', N'9.0.1');
806+
VALUES (N'00000000000002_Migration2', N'7.0.0-test');
807807
808808
DECLARE @result int;
809809
EXEC @result = sp_releaseapplock @Resource = '__EFMigrationsLock', @LockOwner = 'Session';
810810
SELECT @result
811811
""",
812-
Fixture.TestSqlLoggerFactory.Sql,
812+
Fixture.TestSqlLoggerFactory.Sql.Replace(ProductInfo.GetVersion(), "7.0.0-test"),
813813
ignoreLineEndingDifferences: true);
814814
}
815815

@@ -867,7 +867,7 @@ FROM [__EFMigrationsHistory]
867867
ORDER BY [MigrationId];
868868
869869
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
870-
VALUES (N'00000000000000_Empty', N'9.0.1');
870+
VALUES (N'00000000000000_Empty', N'7.0.0-test');
871871
872872
--Before
873873
@@ -910,18 +910,18 @@ CONSTRAINT [PK_Blogs] PRIMARY KEY ([Id])
910910
END
911911
912912
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
913-
VALUES (N'00000000000001_Migration1', N'9.0.1');
913+
VALUES (N'00000000000001_Migration1', N'7.0.0-test');
914914
915915
--After
916916
917917
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
918-
VALUES (N'00000000000002_Migration2', N'9.0.1');
918+
VALUES (N'00000000000002_Migration2', N'7.0.0-test');
919919
920920
DECLARE @result int;
921921
EXEC @result = sp_releaseapplock @Resource = '__EFMigrationsLock', @LockOwner = 'Session';
922922
SELECT @result
923923
""",
924-
Fixture.TestSqlLoggerFactory.Sql,
924+
Fixture.TestSqlLoggerFactory.Sql.Replace(ProductInfo.GetVersion(), "7.0.0-test"),
925925
ignoreLineEndingDifferences: true);
926926
}
927927

0 commit comments

Comments
 (0)