Kyle Spearrin
180c3510a4
bump docker version
2019-07-27 22:46:34 -04:00
Kyle Spearrin
35dbcb87d3
bump version
2019-07-27 22:20:00 -04:00
Kyle Spearrin
8dabba984d
fix nginx healthcheck
2019-07-27 21:54:06 -04:00
pixerl0n
9dc0b2d627
update to core version 1.31.0 & web version 2.11.0 ( #539 )
...
* update to core version 1.31.0 & web version 2.11.0
* update to core version 1.31.0 & web version 2.11.0
2019-07-27 21:34:23 -04:00
Kyle Spearrin
6640e64876
HaveIBeenPwned API key not set.
2019-07-27 12:29:20 -04:00
Kyle Spearrin
8d09a7ad13
org license are version 5
2019-07-26 21:56:48 -04:00
Kyle Spearrin
0793cb6167
healthcheck for attachments server
2019-07-26 20:31:45 -04:00
Kyle Spearrin
310e0115d5
add port to health check
2019-07-26 14:24:39 -04:00
Kyle Spearrin
2ea244c723
healthcheck cmd
2019-07-26 14:04:45 -04:00
Kyle Spearrin
b7f3fa0087
try fixing curl install again
2019-07-26 13:21:46 -04:00
Kyle Spearrin
82a8249a69
fix curl error
2019-07-26 13:12:20 -04:00
Kyle Spearrin
d2bf308c10
fix sqlcmd path on healthcheck
2019-07-26 12:52:39 -04:00
Kyle Spearrin
bba0206bb7
alive check for nginx
2019-07-26 12:43:06 -04:00
Kyle Spearrin
29f0a2aa12
mssql healthcheck
2019-07-26 12:16:38 -04:00
Kyle Spearrin
f78b212aa8
health checks for docker
2019-07-26 11:59:42 -04:00
Kyle Spearrin
d9d2dea784
bump version
2019-07-25 22:10:20 -04:00
Kyle Spearrin
71202cbdc3
remove environnment variables from web config
2019-07-25 22:02:35 -04:00
Kyle Spearrin
edd49c7e67
show pii on api
2019-07-25 21:17:58 -04:00
André Paulo
34eba3c465
Added AskUbuntu.com to StackExchange Domains ( #538 )
...
To make sure I wasn't missing any links, compiled a list of all the websites that you can check [here](https://gist.github.com/andre-paulo98/8cca381d09f2078b5eddc4e8516de3b4 ). [This is the source](https://stackexchange.com/sites?view=list#traffic )
2019-07-25 20:35:18 -04:00
Kyle Spearrin
fcdac6415a
cache ciphers on events lookup
2019-07-25 16:29:34 -04:00
Kyle Spearrin
6a91fd6be9
batch events
2019-07-25 15:50:13 -04:00
Kyle Spearrin
675b22cc9f
single event for delete and share bulk operations
2019-07-25 15:39:25 -04:00
Kyle Spearrin
0f0cd3beeb
handle bulk cipher events more efficiently
2019-07-25 15:34:14 -04:00
Kyle Spearrin
f6da38f931
allow web vault origin for cors requests
2019-07-25 15:05:03 -04:00
Kyle Spearrin
a0da6b3886
azure build scripts
2019-07-24 21:59:14 -04:00
Kyle Spearrin
48fd3062b6
rate limits on prelogin
2019-07-23 17:26:44 -04:00
Kyle Spearrin
a23e081397
update some libs
2019-07-23 16:58:40 -04:00
Kyle Spearrin
94188fa0b5
update to net core 2.2
2019-07-23 16:38:49 -04:00
Kyle Spearrin
3422df325b
HIBP api key in env variables
2019-07-22 21:24:04 -04:00
Kyle Spearrin
b21e89f264
hibp api v3
2019-07-22 21:23:09 -04:00
Kyle Spearrin
2c80e337ae
Organization_ClientExportedVault event
2019-07-12 17:12:36 -04:00
Kyle Spearrin
7c41da494f
signalr heartbeat
2019-07-11 23:06:30 -04:00
Kyle Spearrin
51e4c5e1b7
filter out heartbeat warning log
2019-07-11 21:55:57 -04:00
Kyle Spearrin
05f876e61c
stopping service log
2019-07-11 21:48:44 -04:00
Kyle Spearrin
aedbfcce50
register global settings
2019-07-11 21:45:14 -04:00
Kyle Spearrin
2f300107ce
Remove error log on send
2019-07-11 21:12:20 -04:00
Kyle Spearrin
a6bd55e7a5
more logging
2019-07-11 16:19:38 -04:00
Kyle Spearrin
21d5417e92
done processing warning
2019-07-11 15:46:42 -04:00
Kyle Spearrin
ba2c7fe67d
catch any unhandled exceptions in event processor
2019-07-11 15:43:20 -04:00
Kyle Spearrin
242e509b9d
set en-US as default current culture
2019-07-11 15:03:17 -04:00
Kyle Spearrin
d61957d2de
tz id for linux vs windows
2019-07-10 22:16:24 -04:00
Kyle Spearrin
b5d2a1da75
load certs from azure storage
2019-07-10 20:05:07 -04:00
Kyle Spearrin
f97539d558
build events container into docker deployment
2019-07-09 14:49:34 -04:00
Kyle Spearrin
da5c385d4a
new client event types, pass date to event funcs
2019-07-09 11:44:09 -04:00
Kyle Spearrin
f7be870bfe
up KDF max to 2 million
2019-07-06 23:34:10 -04:00
Joshua Ford
0f3fcc122d
Add basic Core.Services test files ( #526 )
...
Following the paradigms illustrated in "Working Effectively with Legacy
Code", this commit introduces at least one test for each service class
implementation. This test is a simple construction test -- we just
create each service and assert that it exists. Each test suite includes
a comment instructing the developer who comes next to remove the
constructor test. We don't want to keep these tests as the codebase
matures, as they aren't useful in the longterm. They only prove that we
have that class under test.
Where test suites failed to construct their associated classes, we skip
the test but leave behind the implementation. This is by design, so that
as the constructors for those classes change, we are forced to keep the
test suite current by leaning on the compiler.
2019-07-05 20:35:54 -07:00
Kyle Spearrin
bc2621f45f
log httpclient send exceptions
2019-07-05 14:20:16 -04:00
Kyle Spearrin
f9a43288a9
collect events in bulk
2019-07-03 12:11:40 -04:00
Kyle Spearrin
db41a1bd13
collect many events
2019-07-03 08:58:18 -04:00
Kyle Spearrin
69731ecb9d
Add event types
2019-06-20 08:56:10 -04:00