Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(migrations): aggregate migrations for 1.1.0 rc1 #200

Merged
merged 1 commit into from
Jul 11, 2024

Conversation

ntruchsess
Copy link
Contributor

@ntruchsess ntruchsess commented Jul 11, 2024

Description

Migrations 20240614180109_175-RenameMembershipCredential, 20240618085801_118-AddTestCredential and 20240711100008_190-AddDataExchangeGovernanceCredential have been aggregated into new migration 240711100008_1.1.0-rc1

Why

there should only be a single migration per release-candidate.

Issue

#199

Checklist

Please delete options that are not relevant.

  • I have followed the contributing guidelines
  • I have performed a self-review of my own code
  • I have successfully tested my changes locally
  • I have checked that new and existing tests pass locally with my changes

@ntruchsess ntruchsess added this to the Release 1.1.0 (24.08) milestone Jul 11, 2024
@ntruchsess ntruchsess linked an issue Jul 11, 2024 that may be closed by this pull request
@ntruchsess ntruchsess changed the base branch from main to release/v1.1.0-rc.1 July 11, 2024 16:07
@ntruchsess ntruchsess marked this pull request as ready for review July 11, 2024 16:09
@ntruchsess ntruchsess changed the title chore(migrations) aggregate migrations for 1.1.0 rc1 chore(migrations): aggregate migrations for 1.1.0 rc1 Jul 11, 2024
@ntruchsess ntruchsess requested a review from evegufy July 11, 2024 16:11
Copy link
Contributor

@evegufy evegufy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

on environments where the original migration was applied before the migration-history must be adjusted accordingly before applying the new migration. To do so execute below SQL:

delete
from __efmigrations_history_issuer
where migration_id in ('20240614180109_175-RenameMembershipCredential',
'20240618085801_118-AddTestCredential',
'20240711100008_190-AddDataExchangeGovernanceCredential');

insert into __efmigrations_history_issuer (migration_id, product_version)
values ('20240711100008_1.1.0-rc1', '8.0.5');

@evegufy evegufy merged commit 82f9a7e into release/v1.1.0-rc.1 Jul 11, 2024
3 of 6 checks passed
@evegufy evegufy deleted the chore/migrations-1.1.0-rc1 branch July 11, 2024 17:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Aggregate migrations since 1.0.0-rc.4.2
2 participants