3900 Commits

Author SHA1 Message Date
Florian Forster
d326a9f1b0 test depot 2025-08-06 23:09:43 -07:00
Florian Forster
5fbffe1d6c test 2025-08-06 22:59:35 -07:00
Florian Forster
1d9e6c931a test 2025-08-06 22:01:14 -07:00
Florian Forster
3986328336 test with lower memory limit 2025-08-06 17:56:13 -07:00
Florian Forster
a89be8bb8d fix docs 2025-08-06 17:48:08 -07:00
Florian Forster
53f27646b1 fix go build 2025-08-06 17:30:48 -07:00
Florian Forster
c5207f58f8 working docs 2025-08-06 17:08:50 -07:00
Florian Forster
6552fbbc70 use minimal 2025-08-06 17:04:43 -07:00
Florian Forster
a2883eaf08 test 2025-08-06 17:03:30 -07:00
Florian Forster
f85f824a0b test nx cloud 2025-08-06 16:52:22 -07:00
Florian Forster
1fe4f9e5ef sucess 2025-08-06 16:39:43 -07:00
Florian Forster
be6c08fd70 test 2025-08-06 16:36:34 -07:00
Florian Forster
932312c218 test 2025-08-06 16:30:38 -07:00
Florian Forster
f936320876 test 2025-08-06 16:28:03 -07:00
Florian Forster
3f6e247063 test 2025-08-06 16:22:51 -07:00
Florian Forster
b22d0503a7 test 2025-08-06 16:13:21 -07:00
Florian Forster
251c3e0956 test 2025-08-06 16:08:02 -07:00
Florian Forster
00124e4d87 desperate 2025-08-06 16:06:46 -07:00
Florian Forster
b6f8bde3ba test 2025-08-06 15:59:45 -07:00
Florian Forster
954d12965e test 2025-08-06 15:55:29 -07:00
Florian Forster
56968df39f test 2025-08-06 15:46:16 -07:00
Florian Forster
e627e08685 test 2025-08-06 15:41:00 -07:00
Florian Forster
7277dc0fe7 test 2025-08-06 15:22:10 -07:00
Florian Forster
20a60cc430 test 2025-08-06 15:16:41 -07:00
Florian Forster
aa679a7742 test 2025-08-06 15:10:25 -07:00
Florian Forster
d77dcd71a6 test 2025-08-06 15:04:56 -07:00
Florian Forster
acacd2ad33 test ci 2025-08-06 14:48:28 -07:00
Florian Forster
9921e13b89 teste memory issue 2025-08-06 13:48:36 -07:00
Florian Forster
499d82e76e test ci 2025-08-06 13:40:47 -07:00
Florian Forster
36c327d56f fix ci 2025-08-06 13:33:53 -07:00
Florian Forster
ff40ebfe5d without nx cloud 2025-08-06 13:32:30 -07:00
Florian Forster
b586c6fadc run ci for docs 2025-08-06 13:31:12 -07:00
Florian Forster
2988d8d7aa fix release 2025-08-06 13:24:31 -07:00
Florian Forster
ce6c457e8b test 2025-08-06 13:17:31 -07:00
Florian Forster
040e17fc34 wip 2025-08-06 12:06:18 -07:00
Florian Forster
c3281a88d0 Merge branch 'main' into move-go 2025-08-06 11:57:12 -07:00
Hidde Wieringa
b6ebabb962 docs: Typos in Actions documentation (#10199)
*safe* is a typo. I also made the sentence a bit more objective.
2025-08-06 09:34:21 +00:00
Florian Forster
6beec34cf9 wip 2025-08-05 21:46:25 -07:00
Florian Forster
ec0c5f2a71 commit WIP 2025-08-05 18:23:00 -07:00
Florian Forster
b7f147d0fc test 2025-08-05 15:28:02 -07:00
Florian Forster
9ea22cf9cf use ci 2025-08-05 15:21:35 -07:00
Florian Forster
cd2921de26 chore: move the go code into a subfolder 2025-08-05 15:20:32 -07:00
Florian Forster
4ad22ba456 wip 2025-08-05 14:40:53 -07:00
Florian Forster
3e437575c2 preview 2025-08-05 13:54:23 -07:00
Saurabh Thapliyal
5747109f14 fix(console): fix shrinking hover background on clear flow button (#10269)
## Problem
The mat-icon-button in the actions flow-type section had a shrinking
hover background. The hover effect was not displaying properly and
appeared constrained.

## Root Cause
The margin rules were being applied to all `span` elements, including
the Material button's internal elements (like `.mat-mdc-button-label`),
which interfered with the button's hover background positioning.

## Solution
- Changed the span selector from `span` to `> span` to target only
direct children
- Added specific margin reset for the button (`margin-right: 0`)
- Added margin reset for the icon inside the button
- This allows the Material button to use its default hover behavior

## Testing
- [x] No visual regressions in text spacing or layout
- [x] Button hover background now displays as a proper circle
- [x] Other buttons on the page remain unaffected
- [x] Matches the behavior of working buttons in trigger sections

## Type of Change
- [x] Bug fix (non-breaking change which fixes an UI issue)


Before :
<img width="427" height="411" alt="Screenshot 2025-07-15 at 6 08 35 PM"
src="https://github.com/user-attachments/assets/f728e1fa-6711-4e8b-ba24-2a84329f50d7"
/>

After fix :
<img width="406" height="404" alt="Screenshot 2025-07-15 at 6 09 36 PM"
src="https://github.com/user-attachments/assets/27d7b08d-684d-4094-8334-844a4e459025"
/>

Fixes hover background issue in actions flow-type section.

---------

Co-authored-by: Saurabh Thapliyal <saurabh@southguild.tech>
Co-authored-by: Marco A. <marco@zitadel.com>
2025-08-05 20:47:55 +02:00
Florian Forster
c33a79459b fixes docs 2025-08-05 11:39:55 -07:00
Elio Bischof
e210d0a16a chore: fix login integration (#10318)
# Which Problems Are Solved

Login integration tests are not executed in the pipeline

# How the Problems Are Solved

The login integration tests are fixed and added as a pipeline workflow.
It  tests against the built login docker image.
On pipeline failures, developers are guided on how to fix them using a
dev container configured for this purpose.

# Additional Changes

- email domains are replaced by example.com. In case the tests were
accidentally run against a cloud instance, it wouldn't cause bounces.
- pnpm is upgraded, because the --filter argument doesn't work for the
install command on the old version.
- The login Dockerfile is optimized for docker image builds

# Additional Changes From Review for
https://github.com/zitadel/zitadel/pull/10305

These changes were requested from @peintnermax 

- The base dev container starts without any services besides the
database and the dev container itself
- CONTRIBUTING.md is restructured
- To reproduce pipeline checks, only the devcontainer CLI and Docker are
needed. This is described in the CONTRIBUTING.md
- The convenience npm script "generate" is added

# Additional Context

- Follow-up for PR https://github.com/zitadel/zitadel/pull/10305
- Base for https://github.com/zitadel/zitadel/issues/10277
2025-08-05 15:59:30 +00:00
Niko
30175041c1 docs: Typo in environment variable reference for OIDC:DeviceAuth:UserCode:CharAmount config (#10287)
# Which Problems Are Solved

Typo in environment variable reference for
OIDC:DeviceAuth:UserCode:CharAmount config
`ZITADEL_OIDC_DEVICEAUTH_USERCODE_CHARARMOUNT` - _CHARA_**~~R~~**_MOUNT_

# How the Problems Are Solved

Fixed the typo  `ZITADEL_OIDC_DEVICEAUTH_USERCODE_CHARAMOUNT`

Co-authored-by: Stefan Benz <46600784+stebenz@users.noreply.github.com>
2025-08-05 15:12:07 +00:00
Florian Forster
7ecfd8759b cleanup 2025-08-04 22:36:41 -07:00
Florian Forster
0f9f8697e2 test 2025-08-04 21:14:52 -07:00