Support masquerade module versions later than 2.0.0-rc4

Created on 24 January 2025, 2 months ago

Problem/Motivation

As discussed in πŸ› Masquerade Log module incompatible with masquerade version 8.x-2.0-rc4 and earlier Active this module does not support masquerade module versions later than version 2.0.0-rc4 due to this commit in the masquerade module: https://git.drupalcode.org/project/masquerade/-/commit/e65dec07e10f0fda8...

Specifically this change
From

    $this->session->set('masquerading', $this->currentUser->id());

TO

    $this->session->getMetadataBag()->setMasquerade($this->currentUser->id());

And

From

      if ($request->hasSession() && ($session = $request->getSession())) {
        if ($session->has('masquerading')) {

To

      if ($request->hasSession() && ($bag = $request->getSession()->getMetadataBag())) {
        /** @var \Drupal\masquerade\Session\MetadataBag $bag */
        if ($bag->getMasquerade()) {

The part of this module that is not currently working is this code that checks if the current user is masquerading:
https://git.drupalcode.org/project/masquerade_log/-/blob/8.x-1.x/src/Mas...

Steps to reproduce

Proposed resolution

Remaining tasks

Update masquerade_log module to work with versions of masquerade later than 2.0.0 rc4

User interface changes

API changes

Data model changes

✨ Feature request
Status

Active

Version

1.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States trackleft2 Tucson, AZ πŸ‡ΊπŸ‡Έ

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024