Ankush Menat
21a7291d00
ci: Stripped down config for Semantic checks ( #17542 )
* ci: Stripped down config for Semantic checks
Conventional commit enforces too many pointless rules, all we care about
is type and subject.
* ci: auto merge on commit pass
2 年前
Ankush Menat
4eb1fe74a5
chore: dont fetch full repo
In most cases we need 10-50 previous commits. Checking out full repo is
time consuming and not required.
2 年前
Ankush Menat
8ac7e32214
ci: check commit messages with commitlint ( #17541 )
2 年前
mergify[bot]
6f8be47ff9
Merge pull request #17300 from resilient-tech/encrypt-otp-secrets
feat: encrypt 2FA secrets
2 年前
mergify[bot]
7a7693e60f
Merge pull request #17466 from resilient-tech/remove-client.set_default
fix!: allow system managers to toggle email queue
2 年前
Sagar Vora
4b0a9da400
refactor: rename `hold_queue` to `suspend_email_queue`
2 年前
Sagar Vora
9a7f92ca1d
fix!: allow system managers to toggle email queue
2 年前
Sagar Vora
d6f3e2935f
Merge branch 'develop' into encrypt-otp-secrets
2 年前
Sagar Vora
a822092211
fix: remove redundant condition
2 年前
Shariq Ansari
04f4fd8cfc
fix: Redirect to comment in the doc comment section ( #17538 )
2 年前
mergify[bot]
f4a82e4b85
Merge pull request #17527 from kid1194/develop
Updating the Arabic part of the datepicker_i18n.js file
2 年前
Shariq Ansari
330fef15ab
Merge branch 'develop' into develop
2 年前
Ankush Menat
afba6a4815
Merge pull request #17520 from ankush/country_specific_short_numbers
feat: country specific number shortening in charts
2 年前
Vladislav
dcbf320b8b
fix: update ru translation ( #17512 )
2 年前
Ankush Menat
44630f5f62
feat: country specific number shortening in charts
2 年前
Ankush Menat
3304e1c222
chore: bump frappe-charts to latest
2 年前
Ankush Menat
66c77f30dd
fix: chart wrapper padding
This is close to the card boundary and looks ugly when numbers on Y axis
start colliding with it.
2 年前
Ritwik Puri
0414d05ece
Merge pull request #17522 from phot0n/fix-page-not-created
fix: add default system manager role when changing from child to non-child table doctype
2 年前
Ankush Menat
59fff76cb3
fix(dx): word wrap in script diffview
Helpful for devs who write >120 character long code. 💩
[skip ci]
2 年前
Ankush Menat
a98e47150f
feat(tiny): frappe.log -> frappe.log for server scripts
This it already whitelisted but in global scope.
[skip ci]
2 年前
Ankush Menat
1a7a21bbe5
fix(UX)!: respect no filters set by user
Currently if user resets a filter and comes back to same view default
filters get populated. This is annoying behaviour especially since this
is already saved in user setting.
Fix: Always respect user's preference, if their last choice was no
filters then load view without filters.
2 年前
Ankush Menat
b73899e99d
feat: frappe.utils.debug.watch_property to debug JS
This util adds a watcher on any JS object for purpose of debugging,
whenever the property changes a console trace is generated. A custom
callback function can also be passed if required.
Usage:
```javascript
filters = {}
frappe.utils.debug.watch_property(filters, "company");
// any changes to company key on filters object from now on will print a
console trace
```
only for debugging, make sure to not commit it in codebase! :)
debug
2 年前
Ankush Menat
29c855b028
fix: db.get_value -> db.get_single_value ( #17531 )
db.get_value for singles returns string type always, this is confusing
behaviour, db.get_single_value should be used instead.
semgrep rule: https://github.com/frappe/semgrep-rules/pull/16
2 年前
Ritwik Puri
de31c9f7a9
Merge branch 'develop' into fix-page-not-created
2 年前
mergify[bot]
a344d89459
Merge pull request #17530 from frappe/ankush-patch-1
perf(DX): add watchdog as developer dependency
2 年前
Ankush Menat
55fb8acafa
perf(DX): add watchdog as developer dependency
Werkzeug reloader is right now using an inefficient `stat` based reloader which is horrible on large codebases with low-powered devices.
Difference:
- `stat` based reloader basically checks each and every file if they have changed or not.
- watchdog subscribes to platform specific change events on kernel (like kqueue, fsevents or inotify )
2 年前
Amin Ahmed
454766c263
Update datepicker_i18n.js
2 年前
phot0n
5738676b46
fix: use on_update hook instead of after_save and after_insert
after_save hook doesn;t exist so using that triggers nothing
2 年前
phot0n
ddbbc0ef8d
fix: add default system manager role when changing from child to non-child table doctype
2 年前
Ankush Menat
c200f5b3ae
ci: check build requirement before setting up python
[skip ci]
2 年前
Ankush Menat
1f0e019e89
fix(UX): correct message for empty prepared report ( #17517 )
2 年前
Suraj Shetty
bdb36f4c2d
Merge pull request #17515 from surajshetty3416/fix-inbound-notification-receivers
fix: Do not relay email to standard users
2 年前
Suraj Shetty
0a41c4051c
fix: Do not relay email to standard users
Co-authored-by: Ritwik Puri <ritwikpuri5678@gmail.com>
2 年前
Shariq Ansari
a8f86abbd8
refactor: Replaced blog's feedback with comment's comment_type='Like' ( #17479 )
2 年前
Ankush Menat
95f67b8de8
fix: ignore empty part in naming series ( #17508 )
on v13 doc.get("") returns entire doc dictionary, this gets strigified
and becomes a problem for naming.
2 年前
Ankush Menat
2c36874554
style: add config for CSS and SCSS
2 年前
Ankush Menat
3a7c7ff182
ci: ignore HTML files for server tests
2 年前
Ankush Menat
99d3fe3893
fix(dark theme): background color on version page
2 年前
Ankush Menat
5a55507e6d
fix: pass docfield for custom indicator formatter ( #17501 )
2 年前
Sagar Vora
74bdc0fae1
Merge remote-tracking branch 'upstream/develop' into encrypt-otp-secrets
2 年前
uepselon
2791066bb2
fix: allow System Manager to reset OTP secret
* squashed: Change Admin based OTP reset to role based reset (System Manager)
* fix: show `Reset OTP Secret` button only if applicable
* chore: flatten code, use `only_for` API
Co-authored-by: Leonard Goertz <leonard.goertz@noventive.com>
Co-authored-by: Sagar Vora <sagar@resilient.tech>
2 年前
Ankush Menat
0164a87ac9
Merge pull request #17350 from Aradhya-Tripathi/get-all-mod
feat: Adding support to Query engine
2 年前
Ankush Menat
468a5c55a3
ci: fix weird version check in cypress tests ( #17499 )
2 年前
Sagar Vora
843f241c13
fix: copy global defaults before updating to avoid cache mutation ( #17497 )
Co-authored-by: Ankush Menat <ankush@frappe.io>
2 年前
mergify[bot]
eb61357160
Merge pull request #16935 from phot0n/google_oauth_refactor
refactor!: GoogleOAuth
2 年前
Suraj Shetty
a292c7fed2
Merge branch 'develop' into google_oauth_refactor
2 年前
phot0n
7d5262f5e0
chore: translate authorization message and add nosemgrep
2 年前
phot0n
9090b0fe3a
chore: remove unnecessary failure_query_param for email oauth
2 年前
Ankush Menat
e762fe9ce1
test: clear filters on ToDo before running test ( #17494 )
2 年前
phot0n
31c5f260d7
chore: use f-strings
2 年前