WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Conversation

@BeryJu
Copy link
Member

@BeryJu BeryJu commented Dec 4, 2025

No description provided.

Signed-off-by: Jens Langhammer <[email protected]>

# Conflicts:
#	blueprints/schema.json
#	schema.yml
Signed-off-by: Jens Langhammer <[email protected]>
Signed-off-by: Jens Langhammer <[email protected]>
@BeryJu BeryJu requested review from a team as code owners December 4, 2025 00:54
@netlify
Copy link

netlify bot commented Dec 4, 2025

Deploy Preview for authentik-docs ready!

Name Link
🔨 Latest commit 33274d4
🔍 Latest deploy log https://app.netlify.com/projects/authentik-docs/deploys/693766f66e0a550008c68537
😎 Deploy Preview https://deploy-preview-18589--authentik-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@netlify
Copy link

netlify bot commented Dec 4, 2025

Deploy Preview for authentik-integrations ready!

Name Link
🔨 Latest commit 33274d4
🔍 Latest deploy log https://app.netlify.com/projects/authentik-integrations/deploys/693766f6742f600008ce81fc
😎 Deploy Preview https://deploy-preview-18589--authentik-integrations.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@netlify
Copy link

netlify bot commented Dec 4, 2025

Deploy Preview for authentik-storybook ready!

Name Link
🔨 Latest commit 33274d4
🔍 Latest deploy log https://app.netlify.com/projects/authentik-storybook/deploys/693766f63ab57b00083b419d
😎 Deploy Preview https://deploy-preview-18589--authentik-storybook.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@codecov
Copy link

codecov bot commented Dec 4, 2025

Codecov Report

❌ Patch coverage is 81.43713% with 31 lines in your changes missing coverage. Please review.
✅ Project coverage is 93.06%. Comparing base (27f89ff) to head (33274d4).
✅ All tests successful. No failed tests found.

Files with missing lines Patch % Lines
...nterprise/endpoints/connectors/fleet/controller.py 67.39% 30 Missing ⚠️
...ik/enterprise/endpoints/connectors/fleet/models.py 96.00% 1 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main   #18589      +/-   ##
==========================================
- Coverage   93.19%   93.06%   -0.14%     
==========================================
  Files         929      934       +5     
  Lines       51174    51340     +166     
==========================================
+ Hits        47692    47778      +86     
- Misses       3482     3562      +80     
Flag Coverage Δ
e2e 44.25% <23.35%> (-0.65%) ⬇️
integration 23.10% <12.57%> (-0.04%) ⬇️
unit 91.38% <81.43%> (-0.03%) ⬇️
unit-migrate 91.43% <81.43%> (-0.03%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@github-actions
Copy link
Contributor

github-actions bot commented Dec 4, 2025

authentik PR Installation instructions

Instructions for docker-compose

Add the following block to your .env file:

AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-33274d48f0d09e37c2457537d18f9b551eda7a68
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s

Afterwards, run the upgrade commands from the latest release notes.

Instructions for Kubernetes

Add the following block to your values.yml file:

authentik:
    outposts:
        container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
global:
    image:
        repository: ghcr.io/goauthentik/dev-server
        tag: gh-33274d48f0d09e37c2457537d18f9b551eda7a68

Afterwards, run the upgrade commands from the latest release notes.

Signed-off-by: Jens Langhammer <[email protected]>
Signed-off-by: Jens Langhammer <[email protected]>
Comment on lines 24 to 28
getSuccessMessage(): string {
return this.instance
? msg("Successfully updated fleet connector.")
: msg("Successfully created fleet connector.");
}
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
getSuccessMessage(): string {
return this.instance
? msg("Successfully updated fleet connector.")
: msg("Successfully created fleet connector.");
}
public override getSuccessMessage(): string {
return this.instance
? msg("Successfully updated Fleet connector.")
: msg("Successfully created Fleet connector.");
}

name="name"
placeholder=${msg("Connector name...")}
label=${msg("Connector name")}
value=${ifDefined(this.instance?.name)}
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
value=${ifDefined(this.instance?.name)}
value=${this.instance?.name ?? ""}

Comment on lines 50 to 64
<ak-form-element-horizontal name="enabled">
<label class="pf-c-switch">
<input
class="pf-c-switch__input"
type="checkbox"
?checked=${this.instance?.enabled ?? true}
/>
<span class="pf-c-switch__toggle">
<span class="pf-c-switch__toggle-icon">
<i class="fas fa-check" aria-hidden="true"></i>
</span>
</span>
<span class="pf-c-switch__label">${msg("Enabled")}</span>
</label>
</ak-form-element-horizontal>
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
<ak-form-element-horizontal name="enabled">
<label class="pf-c-switch">
<input
class="pf-c-switch__input"
type="checkbox"
?checked=${this.instance?.enabled ?? true}
/>
<span class="pf-c-switch__toggle">
<span class="pf-c-switch__toggle-icon">
<i class="fas fa-check" aria-hidden="true"></i>
</span>
</span>
<span class="pf-c-switch__label">${msg("Enabled")}</span>
</label>
</ak-form-element-horizontal>
<ak-switch-input
name="enabled"
label=${msg("Enable XZY")}
?checked=${this.instance?.enabled ?? true}
help=${msg("....")}
></ak-switch-input>

@state()
protected error?: APIError;

static styles: CSSResult[] = [PFBase, PFCard, PFPage, PFGrid, PFButton, PFDescriptionList];
Copy link
Contributor

Choose a reason for hiding this comment

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

PFBase can be omitted since AKElement has a singleton it references when mounting

Suggested change
static styles: CSSResult[] = [PFBase, PFCard, PFPage, PFGrid, PFButton, PFDescriptionList];
static styles: CSSResult[] = [PFCard, PFPage, PFGrid, PFButton, PFDescriptionList];

}
}

updated(changed: PropertyValues<this>) {
Copy link
Contributor

Choose a reason for hiding this comment

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

@copilot

Suggested change
updated(changed: PropertyValues<this>) {
public override updated(changed: PropertyValues<this>) {

});
}

renderTabOverview() {
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
renderTabOverview() {
protected renderTabOverview() {

Comment on lines 72 to 73
const [appLabel, modelName] =
ModelEnum.AuthentikEndpointsConnectorsFleetFleetconnector.split(".");
Copy link
Contributor

Choose a reason for hiding this comment

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

Can this be moved out of the element instance as a constant?

tabindex="0"
slot="page-permissions"
id="page-permissions"
aria-label="${msg("Permissions")}"
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
aria-label="${msg("Permissions")}"
aria-label=${msg("Permissions")}

Copy link

Copilot AI commented Dec 6, 2025

@GirlBossRush I've opened a new pull request, #18651, to work on those changes. Once the pull request is ready, I'll request review from you.

Copilot AI added a commit that referenced this pull request Dec 6, 2025
Copilot AI and others added 6 commits December 7, 2025 19:48
* Initial plan

* Add public override modifiers to updated method

Co-authored-by: GirlBossRush <[email protected]>

* Address additional feedback from PR #18589

Co-authored-by: GirlBossRush <[email protected]>

* Fix indentation in ak-switch-input component

Co-authored-by: GirlBossRush <[email protected]>

---------

Co-authored-by: copilot-swe-agent[bot] <[email protected]>
Co-authored-by: GirlBossRush <[email protected]>
Signed-off-by: Jens Langhammer <[email protected]>
Signed-off-by: Jens Langhammer <[email protected]>

# Conflicts:
#	schema.yml
Signed-off-by: Jens Langhammer <[email protected]>
Signed-off-by: Jens Langhammer <[email protected]>
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.

3 participants