Skip to content
New issue

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

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

Already on GitHub? # to your account

Migrate v2.4 installations to v3.x #184

Open
1 of 4 tasks
joelbutcher opened this issue Jan 15, 2025 · 1 comment
Open
1 of 4 tasks

Migrate v2.4 installations to v3.x #184

joelbutcher opened this issue Jan 15, 2025 · 1 comment
Labels
help wanted Extra attention is needed
Milestone

Comments

@joelbutcher
Copy link
Collaborator

joelbutcher commented Jan 15, 2025

We need a method of migrating users from 2.4 to 3.x.

Things to consider:

  • Migrate settings
  • Migrate resources
  • Migrate subscriptions / subscribers
  • Migrate API Keys

AOB (please add to this list)


As a comment on the latter, once #183 is merged, we'll need to programmatically migrate users 2.4 API Keys to 3.x using something like the following

$v2ApiKey = $v2User->api_key;

$v3User->tokens()->create([
    'name' => 'v2.4 API Key',
    'token' => hash('sha256', $v2ApiKey),
    'abilities' => ['*'],
    'expires_at' => now()->addDays(90),
]);

@jbrooksuk We need to decide on the abilities and expires_at. IMO it makes sense to throw something into the upgrade documentation that old 2.4 API Keys will continue to work for up to 90 days. But if they want to use the API after that, then they'll need to generate a new API Token using the 3.x dashboard.

@joelbutcher joelbutcher changed the title Migrate existing installations from 2.4 Migrate v2.4 installations to v3.0 Jan 15, 2025
@joelbutcher joelbutcher changed the title Migrate v2.4 installations to v3.0 Migrate v2.4 installations to v3.x Jan 15, 2025
@jbrooksuk
Copy link
Member

Also, yes, happy that we force existing tokens to expire X days after. I'd be generous with 90-120 days?

@jbrooksuk jbrooksuk added the help wanted Extra attention is needed label Jan 15, 2025
@jbrooksuk jbrooksuk added this to the v3.0 milestone Jan 15, 2025
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

2 participants