Reto Brunner
f97c4df2a2
ignore invalid warning in ldap test
...
it complains that the call `ldap.parseDN(dn).toString();` yields
"[object Object]" but that's bogus... the typing is incorrect.
ldap.DN stringifies properly
2024-11-07 17:48:30 +01:00
Reto Brunner
23fff58fc3
update dependency ldapjs to v2.3.3
2024-11-07 17:10:36 +01:00
Reto Brunner
a966b711ac
update dependency ua-parser-js to v1.0.39
2024-11-07 17:08:16 +01:00
Reto Brunner
89b1ca1e3f
update dependency yarn to v1.22.22
2024-11-07 17:03:20 +01:00
Reto Brunner
f86a7f6377
Fix showing multiple certificate fingerprints
2024-11-07 16:55:38 +01:00
Reto Brunner
1760e8b339
client: suppress "***" in joins/parts/etc. for screen readers
2024-11-07 16:51:03 +01:00
renovate[bot]
793313db77
fix(deps): update dependency yarn to v1.22.22
2024-11-01 00:20:21 +00:00
renovate[bot]
61f8ce1ae6
fix(deps): update dependency ua-parser-js to v1.0.39
2024-11-01 00:20:09 +00:00
Kenneth G. Franqueiro
4ba16364cc
client: Indicate active context menu item for screen readers
2024-10-16 16:18:45 -04:00
Sadie Powell
e44bed1758
Fix showing multiple certificate fingerprints on InspIRCd v4.
2024-10-14 18:04:14 +01:00
Kenneth G. Franqueiro
59e8b16990
client: suppress "***" in joins/parts/etc. for screen readers
2024-10-10 17:20:21 -04:00
renovate[bot]
381ddca358
fix(deps): update dependency ldapjs to v2.3.3
2024-09-29 12:47:59 +00:00
Reto Brunner
3d33ef8083
Merge branch 'topic'
2024-09-29 14:46:21 +02:00
Reto Brunner
0c57694c00
bump irc-framework to 4.14
2024-09-29 14:38:53 +02:00
Reto Brunner
834b12218e
Merge branch 'actualUsername' into frameWork
2024-09-29 14:27:18 +02:00
dependabot[bot]
e81273148b
build(deps): bump braces from 3.0.2 to 3.0.3
...
Bumps [braces](https://github.com/micromatch/braces ) from 3.0.2 to 3.0.3.
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md )
- [Commits](https://github.com/micromatch/braces/compare/3.0.2...3.0.3 )
---
updated-dependencies:
- dependency-name: braces
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
2024-09-29 12:07:53 +00:00
Reto Brunner
6d6179c69d
update dependency @types/ws to v8.5.12
2024-09-29 13:58:53 +02:00
Reto Brunner
6f09b6fd70
update dependency postcss to v8.4.47
2024-09-29 13:58:00 +02:00
Reto Brunner
a016db68bb
update dependency mime-types to v2.1.35
2024-09-29 13:55:13 +02:00
Reto Brunner
2962b07c1f
update dependency webpack to v5.94.0
2024-09-29 13:52:53 +02:00
Reto Brunner
e7aff2862a
update dependency cheerio to v1.0.0
2024-09-29 13:49:00 +02:00
Reto Brunner
ca2c231eec
update dependency node-forge to v1.3.1
2024-09-29 13:46:20 +02:00
Reto Brunner
a196b1ad95
update dependency express to v4.20.0
2024-09-29 13:45:01 +02:00
renovate[bot]
05a87130ee
fix(deps): update dependency express to v4.20.0 [security]
2024-09-21 10:53:24 +00:00
renovate[bot]
a6af6bb45c
chore(deps): update dependency postcss to v8.4.47
2024-09-15 15:58:39 +00:00
arminius-smh
ac485c483b
server: fix loading themes from scoped packages
...
Scoped packages have slashes in them, that led to them being loaded at
the wrong path. Encoding the name fixes this.
2024-09-04 12:25:48 +02:00
arminius-smh
0a4adc4592
server: fix scoped package install
...
Installing a scoped npm package with thelounge install lead to an error,
because the original split that was used to split the version from the
package, split at the first @ from scoped packages.
2024-09-04 12:25:48 +02:00
renovate[bot]
8ed898846c
chore(deps): update dependency webpack to v5.94.0 [security]
2024-09-04 02:03:07 +00:00
renovate[bot]
374c6a9b04
fix(deps): update dependency node-forge to v1.3.1
2024-09-01 00:52:03 +00:00
renovate[bot]
6b30b07fc5
fix(deps): update dependency cheerio to v1.0.0
2024-09-01 00:51:51 +00:00
Reto Brunner
e42ad91e04
whois: support actual_username field
...
Some servers (e.g. InspIRCd v4) support the concept of a real username,
i.e. the username that was originally sent as distinct from their virtual
username set by services.
Closes: https://github.com/thelounge/thelounge/issues/4900
2024-08-19 07:34:18 +02:00
renovate[bot]
22388087df
fix(deps): update dependency mime-types to v2.1.35
2024-08-01 03:43:04 +00:00
renovate[bot]
f89288414a
chore(deps): update dependency @types/ws to v8.5.12
2024-08-01 00:53:42 +00:00
Reto Brunner
a61bc14456
remove dns resolution order override
...
This is the default for node 18.
2024-07-24 19:42:01 +02:00
Reto Brunner
718db3ae88
client: use topic command in topic change
...
A user on IRC reported a bug where the topic would change to ":hello"
when the topic was modified to "hello" via the channel topic edit field.
The reason is that irc-framework also sanitizes /RAW commands
and hence our manually escaped trailing param gets another ":"
(which I'm not exactly sure it should be doing... /raw means raw
in my world, but oh well).
We do have a proper /topic command a user could be using, so the
fix is to just do that in the input box as well.
2024-07-16 22:22:13 +02:00
Reto Brunner
e2ddabe032
update browserlist
2024-07-11 08:55:13 +02:00
Reto Brunner
6b9c2f5f58
update dependency sortablejs to v1.15.2
2024-07-11 08:36:34 +02:00
Reto Brunner
74cfff0034
update dependency got to v11.8.6
2024-07-11 08:32:38 +02:00
Reto Brunner
40a4434c8c
update dependency vue-eslint-parser to v9.4.3
2024-07-11 08:32:03 +02:00
Reto Brunner
322d293f88
update dependency socket.io to v4.6.2
2024-07-11 08:31:06 +02:00
Reto Brunner
210d830fd0
update dependency postcss to v8.4.39
2024-07-11 08:29:38 +02:00
Reto Brunner
4990a6d9c6
update dependency @vue/test-utils to v2.4.6
2024-07-11 08:27:29 +02:00
Reto Brunner
f59ebc7d86
update dependency @types/ws to v8.5.10
2024-07-11 08:24:20 +02:00
renovate[bot]
1ccce14d01
fix(deps): update dependency got to v11.8.6
2024-07-01 02:25:52 +00:00
renovate[bot]
a051a70b02
chore(deps): update dependency vue-eslint-parser to v9.4.3
2024-07-01 02:25:42 +00:00
renovate[bot]
81c8db8374
chore(deps): update dependency postcss to v8.4.39
2024-06-30 19:09:15 +00:00
renovate[bot]
a900943345
fix(deps): update dependency socket.io to v4.6.2 [security]
2024-06-19 19:51:34 +00:00
renovate[bot]
f3bdec0078
chore(deps): update dependency sortablejs to v1.15.2
2024-06-01 02:14:44 +00:00
Reto Brunner
0d9c184f19
server: fix time handling
...
The framework may emit messages which do not have a time stamp.
We tried to unconditionally convert the time field, fix that.
The Msg constructor replaces falsey time fields with the current
date so we can also remove the duplication from that codepath.
2024-05-16 22:15:39 +02:00
Max Leiter
4de413070d
Merge pull request #4873 from thelounge/types
...
client: remove setAppBadge and clearAppBadge
2024-05-12 23:08:52 -07:00