Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
336a062
feat: added support for nuxt 4
mridang Jul 28, 2025
b15799f
docs: updated all the Nuxt 3 references to Nuxt 4
mridang Jul 28, 2025
e780b8d
chore(deps): deduped all the deps
mridang Jul 28, 2025
ac68da6
chore(deps): updated all necessary deps
mridang Jul 28, 2025
88cc023
chore(deps): remove unused scule dependency
mridang Jul 31, 2025
945fea5
refactor(deps): move nitropack to devDependencies
mridang Jul 31, 2025
9a09046
refactor(module): remove knitwork dependency
mridang Jul 31, 2025
5a864ba
chore: add devbox.json for development environment
mridang Feb 9, 2026
14703c3
ci: added the missing qodana configuration
mridang Feb 9, 2026
dbef8e0
refactor!: remove local provider support
mridang Feb 15, 2026
269e551
chore: require Node.js 22 as minimum version
mridang Feb 15, 2026
10586a3
chore: switch from pnpm to npm
mridang Feb 15, 2026
aeb850e
refactor: migrate from next-auth to @auth/core
mridang Feb 15, 2026
af30c33
chore: update tooling and eslint configuration
mridang Feb 15, 2026
dc4371f
chore: align package.json with astro-auth structure
mridang Feb 15, 2026
73a642e
refactor: remove duplicate default exports and clean up knip config
mridang Feb 16, 2026
abe5222
test: add comprehensive auth integration and security tests
mridang Feb 16, 2026
acab545
chore: fix eslint config and add test dependencies
mridang Feb 16, 2026
9476e63
chore: fix typedoc warnings and rebrand to zitadel
mridang Feb 16, 2026
6519561
refactor: rename middleware from sidebase-auth to zitadel-auth
mridang Feb 16, 2026
dc562a3
docs: add TypeDoc documentation with hierarchy and rebrand to ZITADEL
mridang Feb 17, 2026
95c1fed
chore: remove overview.md files from docs/api and docs/resources
mridang Feb 17, 2026
f41d8a8
chore: remove local provider documentation
mridang Feb 17, 2026
f684ef2
standardised thw package.json with the other projects
mridang Feb 24, 2026
7988e46
chore: remove unused getHostValueForAuthjs function
mridang Feb 25, 2026
9814b07
refactor: remove dead code and defineNitroPlugin stub from assertOrigin
mridang Feb 25, 2026
c478892
refactor: replace legacy getRequestURL composable with Nuxt's useRequ…
mridang Feb 25, 2026
2da73e9
refactor: always enable global auth middleware and remove legacy options
mridang Feb 25, 2026
95ea788
chore: regenerate package-lock.json to fix oxc-parser native binding …
mridang Feb 25, 2026
2e565ed
fix: install Playwright browsers in CI test workflow
mridang Feb 25, 2026
0057fba
fix: enable coverage collection and align report output with other repos
mridang Feb 25, 2026
14a453f
refactor: register auth middleware globally via module and simplify r…
mridang Feb 25, 2026
888f9e9
refactor: register auth middleware globally and add refresh handler t…
mridang Feb 25, 2026
3de1051
refactor: extract session-refresh into dedicated plugin and fix callb…
mridang Feb 26, 2026
ad00be8
refactor: remove helpers.ts and inline its utilities at call sites
mridang Feb 26, 2026
b007121
refactor: inline callback-url helper into middleware and split Provid…
mridang Feb 26, 2026
0755528
chore(deps): resolve all dependabot issues
mridang Feb 26, 2026
257b02f
refactor: fixed the ts comments
mridang Feb 26, 2026
8b57e88
refactor: inline getNitroRouteRules into plugin and remove kit.ts
mridang Feb 27, 2026
fdf6d85
refactor: move logger.ts from utils/ to runtime root
mridang Feb 27, 2026
a3c84b3
refactor: adopt Nuxt 4 module directory layout
mridang Feb 27, 2026
cf4445d
refactor: inline navigateToAuthPage into useAuth composable
mridang Feb 27, 2026
52678ee
refactor: minor cleanup in auth middleware
mridang Feb 27, 2026
68f877d
fix: use uppercase env var and absolute path for npm cache in devbox
mridang Feb 27, 2026
12746ef
refactor: modernize handler, drop legacy code, add nuxt test suite
mridang Feb 28, 2026
66a3817
refactor: consolidate Auth.js URL and fetch logic into AuthJsClient
mridang Mar 1, 2026
f65fbb5
chore: bump action-semantic-release to v2
mridang Mar 3, 2026
72d40ba
chore: trigger releases on security dependency updates
mridang Mar 12, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 120
130 changes: 0 additions & 130 deletions .github/CONTRIBUTING.md

This file was deleted.

49 changes: 0 additions & 49 deletions .github/ISSUE_TEMPLATE/bug-report.yaml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Bug report
about: Report errors and problems
title: ''
labels: bug
assignees: ''
---

**Versions Used**

<!-- The ver. -->

**Description**

<!-- A clear and concise description of the problem. -->

**How to reproduce**

<!-- Code, config and/or steps needed to reproduce the problem. -->

**Possible Solution**

<!--- Optional: only if you have suggestions on a fix/reason for the bug -->

**Additional context**

<!-- Optional: any other context about the problem: log messages, screenshots, etc. -->
8 changes: 0 additions & 8 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/documentation-issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: Documentation Issue
about: Missing, misleading or incomplete documentation issues
title: ''
labels: docs
assignees: ''
---

**Documentation issue**

<!-- Before opening a new issue, please make sure you already checked -->
<!-- our documentation. -->
47 changes: 0 additions & 47 deletions .github/ISSUE_TEMPLATE/enhancement.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: Feature request
about: Ideas for new features and improvements
title: ''
labels: enhancement
assignees: ''
---

**Is your feature request related to a problem? Please describe.**

<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->

**Describe the solution you'd like**

<!-- A clear and concise description of what you want to happen. -->

**Describe alternatives you've considered**

<!-- A clear and concise description of any alternative solutions or features you've considered. -->

**Additional context**

<!-- Add any other context or screenshots about the feature request here. -->
44 changes: 27 additions & 17 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,36 @@
<!---
☝️ PR title should follow conventional commits (https://conventionalcommits.org)
-->
<!--- Provide a general summary of your changes in the Title above -->

### πŸ”— Linked issue
## Description

<!-- Please ensure there is an open issue and mention its number as #123 -->
<!--- Describe your changes -->

### ❓ Type of change
## Related Issue

<!-- What types of changes does your code introduce? Put an `x` in all the boxes that apply. -->
<!--- This project only accepts pull requests related to open issues -->
<!--- If suggesting a new feature or change, please discuss it in an issue first -->
<!--- If fixing a bug, there should be an issue describing it with steps to reproduce -->
<!--- Please link to the issue here: -->

- [ ] πŸ“– Documentation (updates to the documentation, readme or JSdoc annotations)
- [ ] 🐞 Bug fix (a non-breaking change that fixes an issue)
- [ ] πŸ‘Œ Enhancement (improving an existing functionality like performance)
- [ ] ✨ New feature (a non-breaking change that adds functionality)
- [ ] 🧹 Chore (updates to the build process or auxiliary tools and libraries)
- [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to change)
## Motivation and Context

### πŸ“š Description
<!--- Why is this change required? What problem does it solve? -->

### πŸ“ Checklist
## How Has This Been Tested?

<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, and the tests you ran to -->
<!--- see how your change affects other areas of the code, etc. -->

## Documentation:

<!--- Upon PR's approval, link the wiki page for your corresponding changes here. -->

## Checklist:

- [ ] I have linked an issue or discussion.
- [ ] I have added tests (if possible).
- [ ] I have updated the documentation accordingly.
- [ ] I have assigned the correct milestone or created one if non-existent.
- [ ] I have correctly labeled this pull request.
- [ ] I have linked the corresponding issue in this description.
- [ ] I have requested a review from at least 2 reviewers
- [ ] I have checked the base branch of this pull request
- [ ] I have checked my code for any possible security vulnerabilities
Loading