Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
2 changes: 1 addition & 1 deletion .changeset/tangy-friends-follow.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"saleor-dashboard": minor
"saleor-dashboard": patch
---

Add password login mode setting to Site Settings, allowing administrators to control whether password-based authentication is enabled, restricted to customers only, or fully disabled. The Sign In page now respects this setting — when password login is disabled or restricted to customers only, the email/password form is hidden and only external authentication methods (e.g. SSO) are shown.
2 changes: 1 addition & 1 deletion .changeset/warm-ducks-lead.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"saleor-dashboard": minor
"saleor-dashboard": patch
---

Support REFUNDED_IN_ORDER event in gift card history
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Install Dependencies
run: pnpm install
- name: Publishing version
uses: changesets/action@d89c1de63c7f28ac47ec85ed395f5f1d045d4697 # v1.4.4
uses: changesets/action@6a0a831ff30acef54f2c6aa1cbbc1096b066edaf # v1.7.0
id: changesets
with:
title: "Prepare release ${{ github.ref_name }}"
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@
"zod-validation-error": "3.5.3"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.8",
"@changesets/changelog-github": "0.6.0",
"@changesets/cli": "2.30.0",
"@editorjs/embed": "2.7.6",
"@eslint/js": "^9.39.1",
"@formatjs/cli": "^4.8.4",
Expand Down
103 changes: 46 additions & 57 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ overrides:
"js-yaml@>=4.0.0 <4.1.1": ">=4.1.1"
"js-yaml@<3.14.2": ">=3.14.2"
"preact@>=10.28.0 <10.28.2": ">=10.28.2"
"read-yaml-file@<2.0.0": ">=2.1.0"
"read-yaml-file@<2.0.0": "2.1.0"

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

actual fix, newer version broke cjs

"tmp@<0.2.4": ">=0.2.4"
"vite@>=6.0.0 <6.4.1": ">=6.4.1"
"ws@>=8.0.0 <8.17.1": ">=8.17.1"
Expand Down
Loading