Annotate

.hgignore @ 12659:c0eea4f6c739

usermanager: Add back temporary is_admin to warn about deprecated API usage Goal: Introduce role-auth with minimal disruption is_admin() is unsafe in a system with per-session permissions, so it has been deprecated. Roll-out approach: 1) First, log a warning when is_admin() is used. It should continue to function normally, backed by the new role API. Nothing is really using per-session authz yet, so there is minimal security concern. The 'strict_deprecate_is_admin' global setting can be set to 'true' to force a hard failure of is_admin() attempts (it will log an error and always return false). 2) In some time (at least 1 week), but possibly longer depending on the number of affected deployments: switch 'strict_deprecate_is_admin' to 'true' by default. It can still be disabled for systems that need it. 3) Further in the future, before the next release, the option will be removed and is_admin() will be permanently disabled.
author Matthew Wild <mwild1@gmail.com>
date Mon, 15 Aug 2022 15:25:07 +0100
parent 8345:850c433eb862
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1296
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
1 syntax: glob
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
2 .hgignore
7770
f0024972489e hgignore: Ignore luacheck cache file
Kim Alvefur <zash@zash.se>
parents: 3636
diff changeset
3 .luacheckcache
1296
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
4 data
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
5 local
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
6 www_files
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
7 html/*
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
8 prosody.lua
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
9 prosody.cfg.lua
2905
b924d915c4d0 .hgignore: Ignore prosody.version (thanks Florob)
Matthew Wild <mwild1@gmail.com>
parents: 1296
diff changeset
10 prosody.version
1296
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
11 config.unix
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
12 *.patch
3636
88e4397e39a9 .hgignore: Ignore *.diff.
Waqas Hussain <waqas20@gmail.com>
parents: 3635
diff changeset
13 *.diff
1296
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
14 *.orig
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
15 *.rej
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
16 *.save
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
17 *~
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
18 *.o
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
19 *.so
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
20 *.install
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
21 *.pid
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
22 *.log
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
23 *.err
5cf4c444d3f9 Adding .hgignore
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
24 *.debug
3635
72f3619eeabd .hgignore: Ignore Windows compilation artifacts.
Waqas Hussain <waqas20@gmail.com>
parents: 2905
diff changeset
25 *.dll
72f3619eeabd .hgignore: Ignore Windows compilation artifacts.
Waqas Hussain <waqas20@gmail.com>
parents: 2905
diff changeset
26 *.exp
72f3619eeabd .hgignore: Ignore Windows compilation artifacts.
Waqas Hussain <waqas20@gmail.com>
parents: 2905
diff changeset
27 *.lib
72f3619eeabd .hgignore: Ignore Windows compilation artifacts.
Waqas Hussain <waqas20@gmail.com>
parents: 2905
diff changeset
28 *.obj
8244
6a27e5f276f7 .hgignore: Add luacov.report.out, luacov.report.out.index and luacov.stats.out
Waqas Hussain <waqas20@gmail.com>
parents: 7770
diff changeset
29 luacov.report.out
6a27e5f276f7 .hgignore: Add luacov.report.out, luacov.report.out.index and luacov.stats.out
Waqas Hussain <waqas20@gmail.com>
parents: 7770
diff changeset
30 luacov.report.out.index
6a27e5f276f7 .hgignore: Add luacov.report.out, luacov.report.out.index and luacov.stats.out
Waqas Hussain <waqas20@gmail.com>
parents: 7770
diff changeset
31 luacov.stats.out