Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bgpalerter -t verification? #634

Closed
ghenry opened this issue Aug 30, 2021 · 18 comments
Closed

bgpalerter -t verification? #634

ghenry opened this issue Aug 30, 2021 · 18 comments
Labels
bug Something isn't working next release Implemented but will be released with the next release

Comments

@ghenry
Copy link
Contributor

ghenry commented Aug 30, 2021

Hi all,

I'm running the test option for fake alerts to verify emailing, but I can't see any attempts in the logs. Should I?

I'm using sendgrid and I wanted to validate that side, but can't see anything to indicate the fake alerts stage, let alone reporting?

Even with the placeholder config, I expected to see some logging to show attempts?

Lastly, fantastic documentation. I've had no issues installing, setting up cron for updates or systemd. Congratulations!

Thanks,
Gavin.

@ghenry ghenry added the bug Something isn't working label Aug 30, 2021
@massimocandela
Copy link
Member

massimocandela commented Aug 30, 2021

Hi @ghenry,

When you run the test, alerts should be sent to all the reports monitoring the hijack channel (see here).
So please, be sure you are monitoring somewhere the hijack channel.

By default, reportFile is enabled in config.yml.example, this means that with the default configuration, in logs/reports.log you will be able to see the reports. Additionally, you can enable reportPullAPI and hit http://localhost:8011 to see the alerts being collected. I just checked with both the source code and the binary version and it works with the default configuration.

Thanks for the nice words about the documentation!

@massimocandela massimocandela added question Further information is requested and removed bug Something isn't working labels Aug 30, 2021
@ghenry
Copy link
Contributor Author

ghenry commented Aug 30, 2021

Hi @massimocandela

Here's my config. All I've uncommented is the reportEmail part of newPrefixes and then ran with -t and xxx are email address or a password/domain:

connectors:
  - file: connectorRIS
    name: ris
    params:
      carefulSubscription: true
      url: ws://ris-live.ripe.net/v1/ws/
      perMessageDeflate: true
      subscription:
        moreSpecific: true
        type: UPDATE
        host:
        socketOptions:
          includeRaw: false

#  - file: connectorRISDump
#    name: dmp

monitors:
  - file: monitorHijack
    channel: hijack
    name: basic-hijack-detection
    params:
      thresholdMinPeers: 3

  - file: monitorNewPrefix
    channel: newprefix
    name: prefix-detection
    params:
      thresholdMinPeers: 3

  - file: monitorPath
    channel: path
    name: path-matching
    params:
      thresholdMinPeers: 1

  - file: monitorVisibility
    channel: visibility
    name: withdrawal-detection
    params:
      thresholdMinPeers: 40

  - file: monitorAS
    channel: misconfiguration
    name: asn-monitor
    params:
      thresholdMinPeers: 3

  - file: monitorRPKI
    channel: rpki
    name: rpki-monitor
    params:
      thresholdMinPeers: 3
      checkUncovered: false
      checkDisappearing: false

  - file: monitorROAS
    channel: rpki
    name: rpki-diff
    params:
      enableDiffAlerts: true
      enableExpirationAlerts: true
      enableExpirationCheckTA: true
      enableDeletedCheckTA: true
      roaExpirationAlertHours: 2
      checkOnlyASns: true
      toleranceDeletedRoasTA: 20
      toleranceExpiredRoasTA: 20

  - file: monitorPathNeighbors
    channel: path
    name: path-neighbors
    params:
      thresholdMinPeers: 3

reports:
  - file: reportFile
    channels:
      - hijack
      - newprefix
      - visibility
      - path
      - misconfiguration
      - rpki
    params:
      persistAlertData: false
      alertDataDirectory: alertdata/

  - file: reportEmail
    channels:
      - hijack
      - newprefix
      - visibility
      - path
      - misconfiguration
      - rpki
    params:
      showPaths: 5 # Amount of AS_PATHs to report in the alert
      senderEmail: bgpalerter@xxx
      # BGPalerter uses nodemailer.
      # The smtp section can be configured with all the parameters available at https://nodemailer.com/smtp/
      # the following are just the most useful one
      smtp:
        host: smtp.sendgrid.net
        port: 465
        secure: true # If true the connection will use TLS when connecting to server. If false it will be still possible doing connection upgrade via STARTTLS
        ignoreTLS: false # If true TLS will be completely disabled, including STARTTLS. Set this to true if you see certificate errors in the logs.
        auth:
          user: apikey
          pass: xxx
      notifiedEmails:
        default:
          - xxx
        noc:
          - xxx
          - xxx

#  - file: reportSlack
#    channels:
#      - hijack
#      - newprefix
#      - visibility
#      - path
#      - misconfiguration
#      - rpki
#    params:
#      showPaths: 0 # Amount of AS_PATHs to report in the alert
#      colors:
#        hijack: '#d60b1c'
#        newprefix: '#fa9548'
#        visibility: '#fad648'
#        path: '#42cbf5'
#        rpki: '#d892f0'
#      hooks:
#        default: _YOUR_SLACK_WEBHOOK_URL_
#        noc: _YOUR_SLACK_WEBHOOK_URL_

#  - file: reportKafka
#    channels:
#      - hijack
#      - newprefix
#      - visibility
#      - path
#      - misconfiguration
#      - rpki
#    params:
#      host: localhost
#      port: 9092
#      topics:
#        default: bgpalerter

#  - file: reportSyslog
#    channels:
#      - hijack
#      - newprefix
#      - visibility
#      - path
#      - asn-monitor
#      - misconfiguration
#      - rpki
#    params:
#      host: 127.0.0.1
#      port: 514
#      transport: udp
#      templates: # See here how to write a template https://github.com/nttgin/BGPalerter/blob/main/docs/context.md
#        default: "++BGPalerter-3-${type}: ${summary}|${earliest}|${latest}"
#        hijack: "++BGPalerter-5-${type}: ${summary}|${prefix}|${description}|${asn}|${newprefix}|${neworigin}|${earliest}|${latest}|${peers}"
#        newprefix: "++BGPalerter-4-${type}: ${summary}|${prefix}|${description}|${asn}|${newprefix}|${neworigin}|${earliest}|${latest}|${peers}"
#        visibility: "++BGPalerter-5-${type}: ${summary}|${prefix}|${description}|${asn}|${earliest}|${latest}|${peers}"
#        misconfiguration: "++BGPalerter-3-${type}: ${summary}|${asn}|${prefix}|${earliest}|${latest}"

#  - file: reportAlerta
#    channels:
#      - hijack
#      - newprefix
#      - visibility
#      - path
#      - misconfiguration
#      - rpki
#    params:
#      severity:
#        hijack: critical
#        newprefix: informational
#        visibility: debug
#        path: trace
#      resourceTemplates: # See here how to write a template https://github.com/nttgin/BGPalerter/blob/main/docs/context.md
#        default: "${type}"
#        hijack: "hijack::${prefix}@@${asn}"
#        newprefix: "newprefix::${prefix}@@${asn}"
#        visibility: "visibility::${prefix}@@${asn}"
#      urls:
#        default: _YOUR_ALERTA_API_URL_
#        noc: _YOUR_ALERTA_API_URL_

#  - file: reportWebex
#    channels:
#      - hijack
#      - newprefix
#      - visibility
#      - path
#      - misconfiguration
#      - rpki
#    params:
#      hooks:
#        default: _YOUR_WEBEX_WEBHOOK_URL_
#        noc: _YOUR_WEBEX_WEBHOOK_URL_

#  - file: reportHTTP
#    channels:
#      - hijack
#      - newprefix
#      - visibility
#      - path
#      - misconfiguration
#      - rpki
#    params:
#      templates: # See here how to write a template https://github.com/nttgin/BGPalerter/blob/main/docs/context.md
#        default: '{"text": "${summary}"}'
#      headers:
#      isTemplateJSON: true
#      showPaths: 0 # Amount of AS_PATHs to report in the alert
#      hooks:
#        default: _YOUR_WEBHOOK_URL_
#        noc: _YOUR_WEBHOOK_URL_

#  - file: reportTelegram
#    channels:
#      - hijack
#      - newprefix
#      - visibility
#      - path
#      - misconfiguration
#      - rpki
#    params:
#      showPaths: 0 # Amount of AS_PATHs to report in the alert
#      botUrl: https://api.telegram.org/bot<_BOT_ID_>/sendMessage
#      chatIds:
#        default: _CHAT_ID_
#        noc: _CHAT_ID_

#  - file: reportPullAPI
#    channels:
#      - hijack
#      - newprefix
#      - visibility
#      - path
#      - misconfiguration
#      - rpki
#    params:
#      maxAlertsAmount: 25

############################
# Notification settings:
# - notificationIntervalSeconds
#       Defines the amount of seconds after which an alert can be repeated. An alert is repeated only if the event that
#       triggered it is not yet solved.
# - persistStatus
#       Persist the status of BGPalerter. If the process is restarted, the list of alerts already sent is recovered
#       and they are not repeated. The process must be able to write on disc, this option will create a file inside .cache/

notificationIntervalSeconds: 86400
persistStatus: true


############################
# REST API settings:
# - rest.host
#       The IP address the server will listen. The default value is localhost, this means the API will not be reachable
#       from another host. To make it public use null or 0.0.0.0.
# - rest.port
#       The port the server will listen

rest:
  host: localhost
  port: 8011

logging:
  directory: logs
  logRotatePattern: YYYY-MM-DD
  maxRetainedFiles: 10
  maxFileSizeMB: 15
  compressOnRotation: false
  useUTC: true
  
checkForUpdatesAtBoot: true
generatePrefixListEveryDays: 0

############################
# Process monitoring settings:
# Uncomment or add classes under processMonitors if you want to monitor or send logs about the status of the BGPalerter process

#processMonitors:
#  - file: uptimeApi
#    params:
#      useStatusCodes: true
#
#  - file: uptimeHealthcheck
#    params:
#      url: url_to_poll
#      intervalSeconds: 300
#      method: get
#
#  - file: sentryModule
#    params:
#      dsn: https://<key>@sentry.io/<project>


############################
# The files containing the monitored prefixes. Please see prefixes.yml for an example.
# This is an array (use new lines and dashes!)

monitoredPrefixesFiles:
  - prefixes.yml

############################
# The file containing the user groups.
# User groups can be specified
# 1) directly above, in each report module; or
# 2) inside an external file, as specified below (disabled by default).
# Using an external file allows BGPalerter to auto-reload the user group definitions
# when the external file is changed.

# groupsFile: groups.yml.example

############################
# HTTP proxy setting:
# Allow to run BGPalerter behind an HTTP/HTTPS proxy.
# You can also specify which module can bypass the proxy.
# More information here: https://github.com/nttgin/BGPalerter/blob/main/docs/http-proxy.md

# httpProxy: http://username:[email protected]:9000


############################
# RPKI settings:
# Global RPKI settings shared across all monitors requiring RPKI data
# More information here: https://github.com/nttgin/BGPalerter/blob/main/docs/rpki.md
#
# 29/06/2021: rpkiclient has been set as default vrpProvider in this example since is the only one supporting
# ROAs expiration data. See what expiration data enables you to do: https://github.com/nttgin/BGPalerter/releases/tag/v1.28.1

rpki:
  vrpProvider: rpkiclient
  preCacheROAs: true
  refreshVrpListMinutes: 15
  markDataAsStaleAfterMinutes: 120


############################
# Advanced settings (Don't touch here!)
# Please, refer to the documentation to know the meaning of the following parameters.

alertOnlyOnce: false
fadeOffSeconds: 360
checkFadeOffGroupsSeconds: 30
pidFile: bgpalerter.pid
maxMessagesPerSecond: 6000
multiProcess: false
environment: production
configVersion: 2

@ghenry
Copy link
Contributor Author

ghenry commented Aug 30, 2021

Just to note, this was auto-generated config, I just uncommented the bits I've mentioned.

@ghenry
Copy link
Contributor Author

ghenry commented Aug 30, 2021

Oh, and built using build.sh

@massimocandela
Copy link
Member

massimocandela commented Aug 31, 2021

Hi @ghenry,

I downloaded your config file -as is- including the redacted parameters, and it works. I can see many logs being generated inside logs/reports.log by reportFile, when I run the npm run serve -- --t or the binary. Ofc, the reportEmail part is not working due to the missing parameters, but that's not what we are checking now.

  • Are you looking inside the correct log file?
  • Is it possible that logs/error.log is reporting some other error (e.g., something specific for your machine) and it doesn't reach the test phase?
  • Does your process have the rights to write the log files? Do you see any log file at all?
  • Are you letting BGPalerter run long enough with the option -t? (e.g., 1 minute)

@ghenry
Copy link
Contributor Author

ghenry commented Aug 31, 2021

Hi @massimocandela

Thanks. I've shut down the process and am running with the test option now. Logs are:

bgpalerter@daenerys:~$ tail -f logs/error.log 
2021-08-31T06:25:48+00:00 info: Test connector connected

I'll confirm back other things later, but that looks OK?

Gavin.

@ghenry
Copy link
Contributor Author

ghenry commented Aug 31, 2021

So nothing new yet, still sitting at:

tail -f logs/error.log 
2021-08-31T06:25:48+00:00 info: Test connector connected

@massimocandela
Copy link
Member

massimocandela commented Aug 31, 2021

Something we can try:

Could you show the content of reports.log?

Could you be sure you did git pull in main and you have the last version? Also, do npm ci before to run it.

After, can you try to apply the config above, exactly as you posted it, including redacted parts. Just to check if the error is somewhere else in the config

@ghenry
Copy link
Contributor Author

ghenry commented Aug 31, 2021

reports.log:

bgpalerter@daenerys:~$ ll logs/reports.log 
lrwxrwxrwx 1 bgpalerter bgpalerter 22 Aug 31 09:47 logs/reports.log -> reports-2021-08-31.log
bgpalerter@daenerys:~$ ll logs/reports-2021-08-31.log 
-rw-rw-r-- 1 bgpalerter bgpalerter 14512500 Aug 31 08:56 logs/reports-2021-08-31.log

tail logs/reports.log 
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561907 prefix:2a00:5884::/32 peer:124.0.0.3 path:[1,2,3,15563] nextHop:124.0.0.3 aggregator:null
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561907 prefix:2a00:5884::/32 peer:124.0.0.3 path:[1,2,3,204092] nextHop:124.0.0.3 aggregator:null
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561907 prefix:193.0.0.0/21 peer:1.2.3.5 path:[1,2,3,3333] nextHop:1.2.3.4 aggregator:null
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561907 prefix:175.254.205.0/25 peer:124.0.0.3 path:[1,2,3,4321] nextHop:124.0.0.3 aggregator:null
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561907 prefix:170.254.205.0/25 peer:124.0.0.3 path:[1,2,3,4321] nextHop:124.0.0.3 aggregator:null
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561908 prefix:165.254.255.0/25 peer:124.0.0.2 path:[1,2,3,[4,15562]] nextHop:124.0.0.2 aggregator:null
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561908 prefix:2a00:5884:ffff::/48 peer:124.0.0.3 path:[1,2,3,208585] nextHop:124.0.0.3 aggregator:null
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561908 prefix:2a00:5884::/32 peer:124.0.0.3 path:[1,2,3,[204092,45]] nextHop:124.0.0.3 aggregator:null
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561908 prefix:2a00:5884::/32 peer:124.0.0.3 path:[1,2,3,15563] nextHop:124.0.0.3 aggregator:null
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561908 prefix:2a00:5884::/32 peer:124.0.0.3 path:[1,2,3,204092] nextHop:124.0.0.3 aggregator:nul

I'm running upgrade.sh in cron, so should be latest, not the one I've built.

Will do.

@ghenry
Copy link
Contributor Author

ghenry commented Aug 31, 2021

tail -f logs/error.log 
2021-08-31T06:25:48+00:00 info: Test connector connected
2021-08-31T08:35:26+00:00 info: Test connector connected
2021-08-31T08:35:52+00:00 info: Test connector connected
2021-08-31T08:36:34+00:00 info: ris connector connected
2021-08-31T08:40:00+00:00 info: Test connector connected
2021-08-31T08:47:36+00:00 info: Test connector connected
2021-08-31T08:50:14+00:00 info: Test connector connected

and

./bgpalerter-linux-x64 -t
Testing BGPalerter configuration. WARNING: remove -t option for production monitoring.
Loaded config: /home/bgpalerter/config.yml
BGPalerter, version: 1.28.2 environment: production

@ghenry
Copy link
Contributor Author

ghenry commented Aug 31, 2021

ll logs/reports.log 
lrwxrwxrwx 1 bgpalerter bgpalerter 22 Aug 31 09:50 logs/reports.log -> reports-2021-08-31.log



tail logs/reports.log 
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561907 prefix:2a00:5884::/32 peer:124.0.0.3 path:[1,2,3,15563] nextHop:124.0.0.3 aggregator:null
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561907 prefix:2a00:5884::/32 peer:124.0.0.3 path:[1,2,3,204092] nextHop:124.0.0.3 aggregator:null
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561907 prefix:193.0.0.0/21 peer:1.2.3.5 path:[1,2,3,3333] nextHop:1.2.3.4 aggregator:null
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561907 prefix:175.254.205.0/25 peer:124.0.0.3 path:[1,2,3,4321] nextHop:124.0.0.3 aggregator:null
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561907 prefix:170.254.205.0/25 peer:124.0.0.3 path:[1,2,3,4321] nextHop:124.0.0.3 aggregator:null
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561908 prefix:165.254.255.0/25 peer:124.0.0.2 path:[1,2,3,[4,15562]] nextHop:124.0.0.2 aggregator:null
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561908 prefix:2a00:5884:ffff::/48 peer:124.0.0.3 path:[1,2,3,208585] nextHop:124.0.0.3 aggregator:null
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561908 prefix:2a00:5884::/32 peer:124.0.0.3 path:[1,2,3,[204092,45]] nextHop:124.0.0.3 aggregator:null
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561908 prefix:2a00:5884::/32 peer:124.0.0.3 path:[1,2,3,15563] nextHop:124.0.0.3 aggregator:null
2021-08-31T07:56:01+00:00 verbose: type:announcement timestamp:1630396561908 prefix:2a00:5884::/32 peer:124.0.0.3 path:[1,2,3,204092] nextHop:124.0.0.3 aggregator:null

@massimocandela massimocandela added bug Something isn't working next release Implemented but will be released with the next release and removed question Further information is requested labels Sep 6, 2021
@massimocandela
Copy link
Member

Hi @ghenry,

I'm back on this. What you see in logs/reports.log are the alerts generated; hence, the process is trying to send alerts.
The issue is that no error logs are reported about the failed email deliveries. I investigated a bit on this and I found the reason for it. Essentially, reportEmail correctly tried to deliver emails to the default address when an email address for a user group was not declared. However, when the user group was not declared at all (which usually doesn't happen because BGPalerter generates the user groups by default), the delivery was not even attempted (and so no logs). This indeed made -t less useful for testing reportEmail configurations.

I tried now (version in the dev branch) with your configuration and in logs/error.log you will find some errors from sendgrid.net.

Thanks for reporting this. This will go out with the next release.

@ghenry
Copy link
Contributor Author

ghenry commented Sep 6, 2021 via email

@massimocandela
Copy link
Member

If you are using the source code in the main branch, you will not see email send errors while using the option -t. If you switch to the source code in the dev branch, I fixed it and you will be able to see all the email send errors, including authentication errors (e.g., to sendgrid.net). You can also download the binary of the new pre-release v1.28.3 which already includes this fix.

@massimocandela
Copy link
Member

btw, all of this if you are interested in running the option -t to test the configuration. If you run it normally (without -t), with a configuration generated by BGPalerter, you will see errors in case the email cannot be sent independently from my fix above (but you have to wait for a real alert to happen).

@ghenry
Copy link
Contributor Author

ghenry commented Sep 6, 2021 via email

@massimocandela
Copy link
Member

released in v1.28.3

@ghenry
Copy link
Contributor Author

ghenry commented Sep 14, 2021

Thanks. We know it's working in production. Just got an alert about one of the monitored ASNs. Thanks for this great project!

jeff-leong added a commit to appneta/BGPalerter that referenced this issue Dec 10, 2021
* fixed beacon monitoring to make it less chatty

* disable ris beacon monitoring in research environment

* Bump @sentry/node from 6.4.1 to 6.5.0

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.4.1 to 6.5.0.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.4.1...6.5.0)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump @sentry/node from 6.5.0 to 6.5.1

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.5.0 to 6.5.1.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.5.0...6.5.1)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* improved documentation about connectorRISdump

* added entry about staging roas in readme

* updated sentry

* added entry about staging roas in readme

* improved documentation about connectorRISdump

* rename checkOnlyAsns to checkOnlyASns for consistency

* added checkDisappearing parameter for monitorRPKI do avoid duplicated alerts with monitorROAS

* fixed tests

* fixed TA monitoring and added test

* fixed bug for disappearing ta in ta monitoring

* fixed bug for disappearing ta in ta monitoring, iteration on ta sizes

* fixed case of all roas of one ta disappearing multiple times

* fixed undefined channel propagated to reports

* separated parameters to enable different roa alerts

* fixed expiring roa TA alerts and added test coverage

* updated dependencies

* updated dependencies

* patch glob-parent dependency

* Bump @sentry/node from 6.5.1 to 6.6.0

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.5.1 to 6.6.0.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.5.1...6.6.0)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* renamed main branch references

* increased ws ping timeout

* changed reconnection timeouts

* increased timeout for proxy tests

* split between initial connection timer and reconnection timers

* updated dependencies

* fixed toString of undefined error in case of missing matchedMessage

* updated dependencies

* updated dependencies

* prevent skipping collector peer information from top used AS_paths in the path channel

* forced destruction of websocket instance on input file reload

* increased missed ping tolerance

* minor changes to example files

* cleaned package.json

* updated dependencies

* improved file validation for downstream/upstream lists

* bump version

* fixed condition for being an AS_set

* Bump pkg from 5.2.1 to 5.3.0

Bumps [pkg](https://github.com/vercel/pkg) from 5.2.1 to 5.3.0.
- [Release notes](https://github.com/vercel/pkg/releases)
- [Commits](vercel/pkg@5.2.1...5.3.0)

---
updated-dependencies:
- dependency-name: pkg
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @sentry/node from 6.7.2 to 6.8.0

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.7.2 to 6.8.0.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.7.2...6.8.0)

---
updated-dependencies:
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update friends.md

* minor fix to the documentation

* minor edits to the documentation

* removed dependabot badge (dependabot/dependabot-core#1912)

* add rpkiclient in config.yml.example

* added better information about roas expires feature in documentation

* added rest api capability listed in readme

* fixed link to pull api in readme

* updated dependencies

* Bump ws from 7.5.1 to 7.5.2

Bumps [ws](https://github.com/websockets/ws) from 7.5.1 to 7.5.2.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@7.5.1...7.5.2)

---
updated-dependencies:
- dependency-name: ws
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump mocha from 9.0.1 to 9.0.2

Bumps [mocha](https://github.com/mochajs/mocha) from 9.0.1 to 9.0.2.
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md)
- [Commits](mochajs/mocha@v9.0.1...v9.0.2)

---
updated-dependencies:
- dependency-name: mocha
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump ws from 7.5.2 to 7.5.3

Bumps [ws](https://github.com/websockets/ws) from 7.5.2 to 7.5.3.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@7.5.2...7.5.3)

---
updated-dependencies:
- dependency-name: ws
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* added Webair to friends

* Bump @sentry/node from 6.8.0 to 6.9.0

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.8.0 to 6.9.0.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.8.0...6.9.0)

---
updated-dependencies:
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump nodemailer from 6.6.2 to 6.6.3

Bumps [nodemailer](https://github.com/nodemailer/nodemailer) from 6.6.2 to 6.6.3.
- [Release notes](https://github.com/nodemailer/nodemailer/releases)
- [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodemailer/nodemailer/commits/v6.6.3)

---
updated-dependencies:
- dependency-name: nodemailer
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump inquirer from 8.1.1 to 8.1.2

Bumps [inquirer](https://github.com/SBoudrias/Inquirer.js) from 8.1.1 to 8.1.2.
- [Release notes](https://github.com/SBoudrias/Inquirer.js/releases)
- [Commits](https://github.com/SBoudrias/Inquirer.js/compare/[email protected]@8.1.2)

---
updated-dependencies:
- dependency-name: inquirer
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* added Genesis Cloud to friends

* update dependencies

* patched rpki-validator to remove client-id from url (nttgin#606)

* patched rpki-validator to remove client-id from url (nttgin#606)

* Bump @babel/core from 7.14.6 to 7.14.8

Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.14.6 to 7.14.8.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.14.8/packages/babel-core)

---
updated-dependencies:
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/preset-env from 7.14.7 to 7.14.8

Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.14.7 to 7.14.8.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.14.8/packages/babel-preset-env)

---
updated-dependencies:
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/cli from 7.14.5 to 7.14.8

Bumps [@babel/cli](https://github.com/babel/babel/tree/HEAD/packages/babel-cli) from 7.14.5 to 7.14.8.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.14.8/packages/babel-cli)

---
updated-dependencies:
- dependency-name: "@babel/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump pkg from 5.3.0 to 5.3.1

Bumps [pkg](https://github.com/vercel/pkg) from 5.3.0 to 5.3.1.
- [Release notes](https://github.com/vercel/pkg/releases)
- [Commits](vercel/pkg@5.3.0...5.3.1)

---
updated-dependencies:
- dependency-name: pkg
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @sentry/node from 6.9.0 to 6.10.0

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.9.0 to 6.10.0.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.9.0...6.10.0)

---
updated-dependencies:
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump mocha from 9.0.2 to 9.0.3

Bumps [mocha](https://github.com/mochajs/mocha) from 9.0.2 to 9.0.3.
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md)
- [Commits](mochajs/mocha@v9.0.2...v9.0.3)

---
updated-dependencies:
- dependency-name: mocha
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* updated dependencies

* removed reference to node 10 in documentation

* Bump ws from 7.5.3 to 8.0.0

Bumps [ws](https://github.com/websockets/ws) from 7.5.3 to 8.0.0.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@7.5.3...8.0.0)

---
updated-dependencies:
- dependency-name: ws
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/node from 7.14.7 to 7.14.9

Bumps [@babel/node](https://github.com/babel/babel/tree/HEAD/packages/babel-node) from 7.14.7 to 7.14.9.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.14.9/packages/babel-node)

---
updated-dependencies:
- dependency-name: "@babel/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/preset-env from 7.14.8 to 7.14.9

Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.14.8 to 7.14.9.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.14.9/packages/babel-preset-env)

---
updated-dependencies:
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* added vrp validation

* added vrp validation

* updated rpki-validator

* updated rpki-validator

* Bump @babel/preset-env from 7.14.9 to 7.15.0

Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.14.9 to 7.15.0.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.0/packages/babel-preset-env)

---
updated-dependencies:
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/core from 7.14.8 to 7.15.0

Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.14.8 to 7.15.0.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.0/packages/babel-core)

---
updated-dependencies:
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump yargs from 17.0.1 to 17.1.0

Bumps [yargs](https://github.com/yargs/yargs) from 17.0.1 to 17.1.0.
- [Release notes](https://github.com/yargs/yargs/releases)
- [Changelog](https://github.com/yargs/yargs/blob/master/CHANGELOG.md)
- [Commits](yargs/yargs@v17.0.1...v17.1.0)

---
updated-dependencies:
- dependency-name: yargs
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* bump release version

* fix slack report colors

* Bump @sentry/node from 6.10.0 to 6.11.0

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.10.0 to 6.11.0.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.10.0...6.11.0)

---
updated-dependencies:
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump ws from 8.0.0 to 8.1.0

Bumps [ws](https://github.com/websockets/ws) from 8.0.0 to 8.1.0.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.0.0...8.1.0)

---
updated-dependencies:
- dependency-name: ws
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* updated dependencies

* increased number of beacon prefixes monitored

* updated ip-dub and rpki-validator

* improved error reporting in case of malformed input file

* improved heartbeat error message

* completely removed old ip-sub

* force disconnect on silent socket

* Bump yargs from 17.1.0 to 17.1.1

Bumps [yargs](https://github.com/yargs/yargs) from 17.1.0 to 17.1.1.
- [Release notes](https://github.com/yargs/yargs/releases)
- [Changelog](https://github.com/yargs/yargs/blob/master/CHANGELOG.md)
- [Commits](yargs/yargs@v17.1.0...v17.1.1)

---
updated-dependencies:
- dependency-name: yargs
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump ip-sub from 1.0.28 to 1.1.0

Bumps [ip-sub](https://github.com/massimocandela/ip-sub) from 1.0.28 to 1.1.0.
- [Release notes](https://github.com/massimocandela/ip-sub/releases)
- [Commits](massimocandela/ip-sub@v1.0.28...v1.1.0)

---
updated-dependencies:
- dependency-name: ip-sub
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump ws from 8.1.0 to 8.2.0

Bumps [ws](https://github.com/websockets/ws) from 8.1.0 to 8.2.0.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.1.0...8.2.0)

---
updated-dependencies:
- dependency-name: ws
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump mocha from 9.0.3 to 9.1.0

Bumps [mocha](https://github.com/mochajs/mocha) from 9.0.3 to 9.1.0.
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md)
- [Commits](mochajs/mocha@v9.0.3...v9.1.0)

---
updated-dependencies:
- dependency-name: mocha
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* improved control over websocket readyState (nttgin#632)

* updated dependencies

* Companies I know using BGPalerter (nttgin#633)

* Bump @sentry/node from 6.11.0 to 6.12.0

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.11.0 to 6.12.0.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.11.0...6.12.0)

---
updated-dependencies:
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/cli from 7.14.8 to 7.15.4

Bumps [@babel/cli](https://github.com/babel/babel/tree/HEAD/packages/babel-cli) from 7.14.8 to 7.15.4.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.4/packages/babel-cli)

---
updated-dependencies:
- dependency-name: "@babel/cli"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/preset-env from 7.15.0 to 7.15.4

Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.15.0 to 7.15.4.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.4/packages/babel-preset-env)

---
updated-dependencies:
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/node from 7.14.9 to 7.15.4

Bumps [@babel/node](https://github.com/babel/babel/tree/HEAD/packages/babel-node) from 7.14.9 to 7.15.4.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.4/packages/babel-node)

---
updated-dependencies:
- dependency-name: "@babel/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/core from 7.15.0 to 7.15.4

Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.15.0 to 7.15.4.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.4/packages/babel-core)

---
updated-dependencies:
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* updated dependencies

* updated rpki-validator

* reportEmail not using the default user group in case of missing group declaration (nttgin#634)

* Bump axios from 0.21.3 to 0.21.4

Bumps [axios](https://github.com/axios/axios) from 0.21.3 to 0.21.4.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/master/CHANGELOG.md)
- [Commits](axios/axios@0.21.3...v0.21.4)

---
updated-dependencies:
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* bump version to v1.28.3

* updated dependencies

* Bump pkg from 5.3.1 to 5.3.2

Bumps [pkg](https://github.com/vercel/pkg) from 5.3.1 to 5.3.2.
- [Release notes](https://github.com/vercel/pkg/releases)
- [Commits](vercel/pkg@5.3.1...5.3.2)

---
updated-dependencies:
- dependency-name: pkg
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump inquirer from 8.1.2 to 8.1.3

Bumps [inquirer](https://github.com/SBoudrias/Inquirer.js) from 8.1.2 to 8.1.3.
- [Release notes](https://github.com/SBoudrias/Inquirer.js/releases)
- [Commits](https://github.com/SBoudrias/Inquirer.js/compare/[email protected]@8.1.3)

---
updated-dependencies:
- dependency-name: inquirer
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* fixed monitoring rules getting overwritten by monitoring borders (nttgin#648)

* bump to release v1.28.4

* updated dependencies

* set rpkiclient as default provider

* updated dependencies

* Bump @sentry/node from 6.12.0 to 6.13.1

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.12.0 to 6.13.1.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.12.0...6.13.1)

---
updated-dependencies:
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @sentry/node from 6.13.1 to 6.13.2

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.13.1 to 6.13.2.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.13.1...6.13.2)

---
updated-dependencies:
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump yargs from 17.1.1 to 17.2.0

Bumps [yargs](https://github.com/yargs/yargs) from 17.1.1 to 17.2.0.
- [Release notes](https://github.com/yargs/yargs/releases)
- [Changelog](https://github.com/yargs/yargs/blob/main/CHANGELOG.md)
- [Commits](yargs/yargs@v17.1.1...v17.2.0)

---
updated-dependencies:
- dependency-name: yargs
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump nodemailer from 6.6.3 to 6.6.5

Bumps [nodemailer](https://github.com/nodemailer/nodemailer) from 6.6.3 to 6.6.5.
- [Release notes](https://github.com/nodemailer/nodemailer/releases)
- [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md)
- [Commits](nodemailer/nodemailer@v6.6.3...v6.6.5)

---
updated-dependencies:
- dependency-name: nodemailer
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump utf-8-validate from 5.0.5 to 5.0.6

Bumps [utf-8-validate](https://github.com/websockets/utf-8-validate) from 5.0.5 to 5.0.6.
- [Release notes](https://github.com/websockets/utf-8-validate/releases)
- [Commits](websockets/utf-8-validate@v5.0.5...v5.0.6)

---
updated-dependencies:
- dependency-name: utf-8-validate
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump bufferutil from 4.0.3 to 4.0.4

Bumps [bufferutil](https://github.com/websockets/bufferutil) from 4.0.3 to 4.0.4.
- [Release notes](https://github.com/websockets/bufferutil/releases)
- [Commits](websockets/bufferutil@v4.0.3...v4.0.4)

---
updated-dependencies:
- dependency-name: bufferutil
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump mocha from 9.1.1 to 9.1.2

Bumps [mocha](https://github.com/mochajs/mocha) from 9.1.1 to 9.1.2.
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md)
- [Commits](mochajs/mocha@v9.1.1...v9.1.2)

---
updated-dependencies:
- dependency-name: mocha
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump yargs from 17.2.0 to 17.2.1

Bumps [yargs](https://github.com/yargs/yargs) from 17.2.0 to 17.2.1.
- [Release notes](https://github.com/yargs/yargs/releases)
- [Changelog](https://github.com/yargs/yargs/blob/main/CHANGELOG.md)
- [Commits](yargs/yargs@v17.2.0...v17.2.1)

---
updated-dependencies:
- dependency-name: yargs
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump restify from 8.5.1 to 8.6.0

Bumps [restify](https://github.com/restify/node-restify) from 8.5.1 to 8.6.0.
- [Release notes](https://github.com/restify/node-restify/releases)
- [Changelog](https://github.com/restify/node-restify/blob/v8.6.0/CHANGELOG.md)
- [Commits](restify/node-restify@v8.5.1...v8.6.0)

---
updated-dependencies:
- dependency-name: restify
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump ws from 8.2.2 to 8.2.3

Bumps [ws](https://github.com/websockets/ws) from 8.2.2 to 8.2.3.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.2.2...8.2.3)

---
updated-dependencies:
- dependency-name: ws
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump axios from 0.21.4 to 0.22.0

Bumps [axios](https://github.com/axios/axios) from 0.21.4 to 0.22.0.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/master/CHANGELOG.md)
- [Commits](axios/axios@v0.21.4...v0.22.0)

---
updated-dependencies:
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump pkg from 5.3.2 to 5.3.3

Bumps [pkg](https://github.com/vercel/pkg) from 5.3.2 to 5.3.3.
- [Release notes](https://github.com/vercel/pkg/releases)
- [Commits](vercel/pkg@5.3.2...5.3.3)

---
updated-dependencies:
- dependency-name: pkg
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump inquirer from 8.1.5 to 8.2.0

Bumps [inquirer](https://github.com/SBoudrias/Inquirer.js) from 8.1.5 to 8.2.0.
- [Release notes](https://github.com/SBoudrias/Inquirer.js/releases)
- [Commits](https://github.com/SBoudrias/Inquirer.js/compare/[email protected]@8.2.0)

---
updated-dependencies:
- dependency-name: inquirer
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/node from 7.15.4 to 7.15.8

Bumps [@babel/node](https://github.com/babel/babel/tree/HEAD/packages/babel-node) from 7.15.4 to 7.15.8.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.8/packages/babel-node)

---
updated-dependencies:
- dependency-name: "@babel/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/core from 7.15.5 to 7.15.8

Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.15.5 to 7.15.8.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.8/packages/babel-core)

---
updated-dependencies:
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @sentry/node from 6.13.2 to 6.13.3

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.13.2 to 6.13.3.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.13.2...6.13.3)

---
updated-dependencies:
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/preset-env from 7.15.6 to 7.15.8

Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.15.6 to 7.15.8.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.8/packages/babel-preset-env)

---
updated-dependencies:
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump ip-sub from 1.1.1 to 1.1.2

Bumps [ip-sub](https://github.com/massimocandela/ip-sub) from 1.1.1 to 1.1.2.
- [Release notes](https://github.com/massimocandela/ip-sub/releases)
- [Commits](massimocandela/ip-sub@v1.1.1...v1.1.2)

---
updated-dependencies:
- dependency-name: ip-sub
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump rpki-validator from 2.6.12 to 2.7.2

Bumps [rpki-validator](https://github.com/massimocandela/rpki-validator) from 2.6.12 to 2.7.2.
- [Release notes](https://github.com/massimocandela/rpki-validator/releases)
- [Commits](massimocandela/rpki-validator@v2.6.12...v2.7.2)

---
updated-dependencies:
- dependency-name: rpki-validator
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump rpki-validator from 2.7.2 to 2.7.3

Bumps [rpki-validator](https://github.com/massimocandela/rpki-validator) from 2.7.2 to 2.7.3.
- [Release notes](https://github.com/massimocandela/rpki-validator/releases)
- [Commits](massimocandela/rpki-validator@v2.7.2...v2.7.3)

---
updated-dependencies:
- dependency-name: rpki-validator
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump nodemailer from 6.6.5 to 6.7.0

Bumps [nodemailer](https://github.com/nodemailer/nodemailer) from 6.6.5 to 6.7.0.
- [Release notes](https://github.com/nodemailer/nodemailer/releases)
- [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md)
- [Commits](nodemailer/nodemailer@v6.6.5...v6.7.0)

---
updated-dependencies:
- dependency-name: nodemailer
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump axios from 0.22.0 to 0.23.0

Bumps [axios](https://github.com/axios/axios) from 0.22.0 to 0.23.0.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/master/CHANGELOG.md)
- [Commits](axios/axios@v0.22.0...v0.23.0)

---
updated-dependencies:
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump bufferutil from 4.0.4 to 4.0.5

Bumps [bufferutil](https://github.com/websockets/bufferutil) from 4.0.4 to 4.0.5.
- [Release notes](https://github.com/websockets/bufferutil/releases)
- [Commits](websockets/bufferutil@v4.0.4...v4.0.5)

---
updated-dependencies:
- dependency-name: bufferutil
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump utf-8-validate from 5.0.6 to 5.0.7

Bumps [utf-8-validate](https://github.com/websockets/utf-8-validate) from 5.0.6 to 5.0.7.
- [Release notes](https://github.com/websockets/utf-8-validate/releases)
- [Commits](websockets/utf-8-validate@v5.0.6...v5.0.7)

---
updated-dependencies:
- dependency-name: utf-8-validate
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump mocha from 9.1.2 to 9.1.3

Bumps [mocha](https://github.com/mochajs/mocha) from 9.1.2 to 9.1.3.
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md)
- [Commits](mochajs/mocha@v9.1.2...v9.1.3)

---
updated-dependencies:
- dependency-name: mocha
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* updated dependencies

* updated dependencies

* default to node 14 for builds

* introduced authentication header for websocket connection

* introduced connection and instance uuid for ris live

* fixed traling slash on ws parameters

* introduced timeout verification in case of missing open message from websocket

* avoid setting multiple open connect timeouts

* APM-12040 fix build job

* APM-12040 run apt-update to update packages

* APM-12040 fix merge bugs

Co-authored-by: Massimo Candela <[email protected]>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: Massimo Candela <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: raymonvdm <[email protected]>
Co-authored-by: Tristan Helmich <[email protected]>
Co-authored-by: Chris W <[email protected]>
Co-authored-by: Gavin Henry <[email protected]>
jeff-leong added a commit to appneta/BGPalerter that referenced this issue Dec 22, 2021
* Apm 12040 upgrade bgpalerter to 1 28 4

* fixed beacon monitoring to make it less chatty

* disable ris beacon monitoring in research environment

* Bump @sentry/node from 6.4.1 to 6.5.0

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.4.1 to 6.5.0.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.4.1...6.5.0)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Bump @sentry/node from 6.5.0 to 6.5.1

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.5.0 to 6.5.1.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.5.0...6.5.1)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* improved documentation about connectorRISdump

* added entry about staging roas in readme

* updated sentry

* added entry about staging roas in readme

* improved documentation about connectorRISdump

* rename checkOnlyAsns to checkOnlyASns for consistency

* added checkDisappearing parameter for monitorRPKI do avoid duplicated alerts with monitorROAS

* fixed tests

* fixed TA monitoring and added test

* fixed bug for disappearing ta in ta monitoring

* fixed bug for disappearing ta in ta monitoring, iteration on ta sizes

* fixed case of all roas of one ta disappearing multiple times

* fixed undefined channel propagated to reports

* separated parameters to enable different roa alerts

* fixed expiring roa TA alerts and added test coverage

* updated dependencies

* updated dependencies

* patch glob-parent dependency

* Bump @sentry/node from 6.5.1 to 6.6.0

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.5.1 to 6.6.0.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.5.1...6.6.0)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* renamed main branch references

* increased ws ping timeout

* changed reconnection timeouts

* increased timeout for proxy tests

* split between initial connection timer and reconnection timers

* updated dependencies

* fixed toString of undefined error in case of missing matchedMessage

* updated dependencies

* updated dependencies

* prevent skipping collector peer information from top used AS_paths in the path channel

* forced destruction of websocket instance on input file reload

* increased missed ping tolerance

* minor changes to example files

* cleaned package.json

* updated dependencies

* improved file validation for downstream/upstream lists

* bump version

* fixed condition for being an AS_set

* Bump pkg from 5.2.1 to 5.3.0

Bumps [pkg](https://github.com/vercel/pkg) from 5.2.1 to 5.3.0.
- [Release notes](https://github.com/vercel/pkg/releases)
- [Commits](vercel/pkg@5.2.1...5.3.0)

---
updated-dependencies:
- dependency-name: pkg
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @sentry/node from 6.7.2 to 6.8.0

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.7.2 to 6.8.0.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.7.2...6.8.0)

---
updated-dependencies:
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update friends.md

* minor fix to the documentation

* minor edits to the documentation

* removed dependabot badge (dependabot/dependabot-core#1912)

* add rpkiclient in config.yml.example

* added better information about roas expires feature in documentation

* added rest api capability listed in readme

* fixed link to pull api in readme

* updated dependencies

* Bump ws from 7.5.1 to 7.5.2

Bumps [ws](https://github.com/websockets/ws) from 7.5.1 to 7.5.2.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@7.5.1...7.5.2)

---
updated-dependencies:
- dependency-name: ws
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump mocha from 9.0.1 to 9.0.2

Bumps [mocha](https://github.com/mochajs/mocha) from 9.0.1 to 9.0.2.
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md)
- [Commits](mochajs/mocha@v9.0.1...v9.0.2)

---
updated-dependencies:
- dependency-name: mocha
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump ws from 7.5.2 to 7.5.3

Bumps [ws](https://github.com/websockets/ws) from 7.5.2 to 7.5.3.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@7.5.2...7.5.3)

---
updated-dependencies:
- dependency-name: ws
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* added Webair to friends

* Bump @sentry/node from 6.8.0 to 6.9.0

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.8.0 to 6.9.0.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.8.0...6.9.0)

---
updated-dependencies:
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump nodemailer from 6.6.2 to 6.6.3

Bumps [nodemailer](https://github.com/nodemailer/nodemailer) from 6.6.2 to 6.6.3.
- [Release notes](https://github.com/nodemailer/nodemailer/releases)
- [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodemailer/nodemailer/commits/v6.6.3)

---
updated-dependencies:
- dependency-name: nodemailer
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump inquirer from 8.1.1 to 8.1.2

Bumps [inquirer](https://github.com/SBoudrias/Inquirer.js) from 8.1.1 to 8.1.2.
- [Release notes](https://github.com/SBoudrias/Inquirer.js/releases)
- [Commits](https://github.com/SBoudrias/Inquirer.js/compare/[email protected]@8.1.2)

---
updated-dependencies:
- dependency-name: inquirer
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* added Genesis Cloud to friends

* update dependencies

* patched rpki-validator to remove client-id from url (nttgin#606)

* patched rpki-validator to remove client-id from url (nttgin#606)

* Bump @babel/core from 7.14.6 to 7.14.8

Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.14.6 to 7.14.8.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.14.8/packages/babel-core)

---
updated-dependencies:
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/preset-env from 7.14.7 to 7.14.8

Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.14.7 to 7.14.8.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.14.8/packages/babel-preset-env)

---
updated-dependencies:
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/cli from 7.14.5 to 7.14.8

Bumps [@babel/cli](https://github.com/babel/babel/tree/HEAD/packages/babel-cli) from 7.14.5 to 7.14.8.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.14.8/packages/babel-cli)

---
updated-dependencies:
- dependency-name: "@babel/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump pkg from 5.3.0 to 5.3.1

Bumps [pkg](https://github.com/vercel/pkg) from 5.3.0 to 5.3.1.
- [Release notes](https://github.com/vercel/pkg/releases)
- [Commits](vercel/pkg@5.3.0...5.3.1)

---
updated-dependencies:
- dependency-name: pkg
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @sentry/node from 6.9.0 to 6.10.0

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.9.0 to 6.10.0.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.9.0...6.10.0)

---
updated-dependencies:
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump mocha from 9.0.2 to 9.0.3

Bumps [mocha](https://github.com/mochajs/mocha) from 9.0.2 to 9.0.3.
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md)
- [Commits](mochajs/mocha@v9.0.2...v9.0.3)

---
updated-dependencies:
- dependency-name: mocha
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* updated dependencies

* removed reference to node 10 in documentation

* Bump ws from 7.5.3 to 8.0.0

Bumps [ws](https://github.com/websockets/ws) from 7.5.3 to 8.0.0.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@7.5.3...8.0.0)

---
updated-dependencies:
- dependency-name: ws
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/node from 7.14.7 to 7.14.9

Bumps [@babel/node](https://github.com/babel/babel/tree/HEAD/packages/babel-node) from 7.14.7 to 7.14.9.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.14.9/packages/babel-node)

---
updated-dependencies:
- dependency-name: "@babel/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/preset-env from 7.14.8 to 7.14.9

Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.14.8 to 7.14.9.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.14.9/packages/babel-preset-env)

---
updated-dependencies:
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* added vrp validation

* added vrp validation

* updated rpki-validator

* updated rpki-validator

* Bump @babel/preset-env from 7.14.9 to 7.15.0

Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.14.9 to 7.15.0.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.0/packages/babel-preset-env)

---
updated-dependencies:
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/core from 7.14.8 to 7.15.0

Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.14.8 to 7.15.0.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.0/packages/babel-core)

---
updated-dependencies:
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump yargs from 17.0.1 to 17.1.0

Bumps [yargs](https://github.com/yargs/yargs) from 17.0.1 to 17.1.0.
- [Release notes](https://github.com/yargs/yargs/releases)
- [Changelog](https://github.com/yargs/yargs/blob/master/CHANGELOG.md)
- [Commits](yargs/yargs@v17.0.1...v17.1.0)

---
updated-dependencies:
- dependency-name: yargs
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* bump release version

* fix slack report colors

* Bump @sentry/node from 6.10.0 to 6.11.0

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.10.0 to 6.11.0.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.10.0...6.11.0)

---
updated-dependencies:
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump ws from 8.0.0 to 8.1.0

Bumps [ws](https://github.com/websockets/ws) from 8.0.0 to 8.1.0.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.0.0...8.1.0)

---
updated-dependencies:
- dependency-name: ws
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* updated dependencies

* increased number of beacon prefixes monitored

* updated ip-dub and rpki-validator

* improved error reporting in case of malformed input file

* improved heartbeat error message

* completely removed old ip-sub

* force disconnect on silent socket

* Bump yargs from 17.1.0 to 17.1.1

Bumps [yargs](https://github.com/yargs/yargs) from 17.1.0 to 17.1.1.
- [Release notes](https://github.com/yargs/yargs/releases)
- [Changelog](https://github.com/yargs/yargs/blob/master/CHANGELOG.md)
- [Commits](yargs/yargs@v17.1.0...v17.1.1)

---
updated-dependencies:
- dependency-name: yargs
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump ip-sub from 1.0.28 to 1.1.0

Bumps [ip-sub](https://github.com/massimocandela/ip-sub) from 1.0.28 to 1.1.0.
- [Release notes](https://github.com/massimocandela/ip-sub/releases)
- [Commits](massimocandela/ip-sub@v1.0.28...v1.1.0)

---
updated-dependencies:
- dependency-name: ip-sub
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump ws from 8.1.0 to 8.2.0

Bumps [ws](https://github.com/websockets/ws) from 8.1.0 to 8.2.0.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.1.0...8.2.0)

---
updated-dependencies:
- dependency-name: ws
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump mocha from 9.0.3 to 9.1.0

Bumps [mocha](https://github.com/mochajs/mocha) from 9.0.3 to 9.1.0.
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md)
- [Commits](mochajs/mocha@v9.0.3...v9.1.0)

---
updated-dependencies:
- dependency-name: mocha
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* improved control over websocket readyState (nttgin#632)

* updated dependencies

* Companies I know using BGPalerter (nttgin#633)

* Bump @sentry/node from 6.11.0 to 6.12.0

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.11.0 to 6.12.0.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.11.0...6.12.0)

---
updated-dependencies:
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/cli from 7.14.8 to 7.15.4

Bumps [@babel/cli](https://github.com/babel/babel/tree/HEAD/packages/babel-cli) from 7.14.8 to 7.15.4.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.4/packages/babel-cli)

---
updated-dependencies:
- dependency-name: "@babel/cli"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/preset-env from 7.15.0 to 7.15.4

Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.15.0 to 7.15.4.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.4/packages/babel-preset-env)

---
updated-dependencies:
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/node from 7.14.9 to 7.15.4

Bumps [@babel/node](https://github.com/babel/babel/tree/HEAD/packages/babel-node) from 7.14.9 to 7.15.4.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.4/packages/babel-node)

---
updated-dependencies:
- dependency-name: "@babel/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/core from 7.15.0 to 7.15.4

Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.15.0 to 7.15.4.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.4/packages/babel-core)

---
updated-dependencies:
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* updated dependencies

* updated rpki-validator

* reportEmail not using the default user group in case of missing group declaration (nttgin#634)

* Bump axios from 0.21.3 to 0.21.4

Bumps [axios](https://github.com/axios/axios) from 0.21.3 to 0.21.4.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/master/CHANGELOG.md)
- [Commits](axios/axios@0.21.3...v0.21.4)

---
updated-dependencies:
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* bump version to v1.28.3

* updated dependencies

* Bump pkg from 5.3.1 to 5.3.2

Bumps [pkg](https://github.com/vercel/pkg) from 5.3.1 to 5.3.2.
- [Release notes](https://github.com/vercel/pkg/releases)
- [Commits](vercel/pkg@5.3.1...5.3.2)

---
updated-dependencies:
- dependency-name: pkg
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump inquirer from 8.1.2 to 8.1.3

Bumps [inquirer](https://github.com/SBoudrias/Inquirer.js) from 8.1.2 to 8.1.3.
- [Release notes](https://github.com/SBoudrias/Inquirer.js/releases)
- [Commits](https://github.com/SBoudrias/Inquirer.js/compare/[email protected]@8.1.3)

---
updated-dependencies:
- dependency-name: inquirer
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* fixed monitoring rules getting overwritten by monitoring borders (nttgin#648)

* bump to release v1.28.4

* updated dependencies

* set rpkiclient as default provider

* updated dependencies

* Bump @sentry/node from 6.12.0 to 6.13.1

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.12.0 to 6.13.1.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.12.0...6.13.1)

---
updated-dependencies:
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @sentry/node from 6.13.1 to 6.13.2

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.13.1 to 6.13.2.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.13.1...6.13.2)

---
updated-dependencies:
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump yargs from 17.1.1 to 17.2.0

Bumps [yargs](https://github.com/yargs/yargs) from 17.1.1 to 17.2.0.
- [Release notes](https://github.com/yargs/yargs/releases)
- [Changelog](https://github.com/yargs/yargs/blob/main/CHANGELOG.md)
- [Commits](yargs/yargs@v17.1.1...v17.2.0)

---
updated-dependencies:
- dependency-name: yargs
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump nodemailer from 6.6.3 to 6.6.5

Bumps [nodemailer](https://github.com/nodemailer/nodemailer) from 6.6.3 to 6.6.5.
- [Release notes](https://github.com/nodemailer/nodemailer/releases)
- [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md)
- [Commits](nodemailer/nodemailer@v6.6.3...v6.6.5)

---
updated-dependencies:
- dependency-name: nodemailer
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump utf-8-validate from 5.0.5 to 5.0.6

Bumps [utf-8-validate](https://github.com/websockets/utf-8-validate) from 5.0.5 to 5.0.6.
- [Release notes](https://github.com/websockets/utf-8-validate/releases)
- [Commits](websockets/utf-8-validate@v5.0.5...v5.0.6)

---
updated-dependencies:
- dependency-name: utf-8-validate
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump bufferutil from 4.0.3 to 4.0.4

Bumps [bufferutil](https://github.com/websockets/bufferutil) from 4.0.3 to 4.0.4.
- [Release notes](https://github.com/websockets/bufferutil/releases)
- [Commits](websockets/bufferutil@v4.0.3...v4.0.4)

---
updated-dependencies:
- dependency-name: bufferutil
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump mocha from 9.1.1 to 9.1.2

Bumps [mocha](https://github.com/mochajs/mocha) from 9.1.1 to 9.1.2.
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md)
- [Commits](mochajs/mocha@v9.1.1...v9.1.2)

---
updated-dependencies:
- dependency-name: mocha
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump yargs from 17.2.0 to 17.2.1

Bumps [yargs](https://github.com/yargs/yargs) from 17.2.0 to 17.2.1.
- [Release notes](https://github.com/yargs/yargs/releases)
- [Changelog](https://github.com/yargs/yargs/blob/main/CHANGELOG.md)
- [Commits](yargs/yargs@v17.2.0...v17.2.1)

---
updated-dependencies:
- dependency-name: yargs
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump restify from 8.5.1 to 8.6.0

Bumps [restify](https://github.com/restify/node-restify) from 8.5.1 to 8.6.0.
- [Release notes](https://github.com/restify/node-restify/releases)
- [Changelog](https://github.com/restify/node-restify/blob/v8.6.0/CHANGELOG.md)
- [Commits](restify/node-restify@v8.5.1...v8.6.0)

---
updated-dependencies:
- dependency-name: restify
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump ws from 8.2.2 to 8.2.3

Bumps [ws](https://github.com/websockets/ws) from 8.2.2 to 8.2.3.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.2.2...8.2.3)

---
updated-dependencies:
- dependency-name: ws
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump axios from 0.21.4 to 0.22.0

Bumps [axios](https://github.com/axios/axios) from 0.21.4 to 0.22.0.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/master/CHANGELOG.md)
- [Commits](axios/axios@v0.21.4...v0.22.0)

---
updated-dependencies:
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump pkg from 5.3.2 to 5.3.3

Bumps [pkg](https://github.com/vercel/pkg) from 5.3.2 to 5.3.3.
- [Release notes](https://github.com/vercel/pkg/releases)
- [Commits](vercel/pkg@5.3.2...5.3.3)

---
updated-dependencies:
- dependency-name: pkg
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump inquirer from 8.1.5 to 8.2.0

Bumps [inquirer](https://github.com/SBoudrias/Inquirer.js) from 8.1.5 to 8.2.0.
- [Release notes](https://github.com/SBoudrias/Inquirer.js/releases)
- [Commits](https://github.com/SBoudrias/Inquirer.js/compare/[email protected]@8.2.0)

---
updated-dependencies:
- dependency-name: inquirer
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/node from 7.15.4 to 7.15.8

Bumps [@babel/node](https://github.com/babel/babel/tree/HEAD/packages/babel-node) from 7.15.4 to 7.15.8.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.8/packages/babel-node)

---
updated-dependencies:
- dependency-name: "@babel/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/core from 7.15.5 to 7.15.8

Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.15.5 to 7.15.8.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.8/packages/babel-core)

---
updated-dependencies:
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @sentry/node from 6.13.2 to 6.13.3

Bumps [@sentry/node](https://github.com/getsentry/sentry-javascript) from 6.13.2 to 6.13.3.
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@6.13.2...6.13.3)

---
updated-dependencies:
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump @babel/preset-env from 7.15.6 to 7.15.8

Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.15.6 to 7.15.8.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.15.8/packages/babel-preset-env)

---
updated-dependencies:
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump ip-sub from 1.1.1 to 1.1.2

Bumps [ip-sub](https://github.com/massimocandela/ip-sub) from 1.1.1 to 1.1.2.
- [Release notes](https://github.com/massimocandela/ip-sub/releases)
- [Commits](massimocandela/ip-sub@v1.1.1...v1.1.2)

---
updated-dependencies:
- dependency-name: ip-sub
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump rpki-validator from 2.6.12 to 2.7.2

Bumps [rpki-validator](https://github.com/massimocandela/rpki-validator) from 2.6.12 to 2.7.2.
- [Release notes](https://github.com/massimocandela/rpki-validator/releases)
- [Commits](massimocandela/rpki-validator@v2.6.12...v2.7.2)

---
updated-dependencies:
- dependency-name: rpki-validator
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump rpki-validator from 2.7.2 to 2.7.3

Bumps [rpki-validator](https://github.com/massimocandela/rpki-validator) from 2.7.2 to 2.7.3.
- [Release notes](https://github.com/massimocandela/rpki-validator/releases)
- [Commits](massimocandela/rpki-validator@v2.7.2...v2.7.3)

---
updated-dependencies:
- dependency-name: rpki-validator
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump nodemailer from 6.6.5 to 6.7.0

Bumps [nodemailer](https://github.com/nodemailer/nodemailer) from 6.6.5 to 6.7.0.
- [Release notes](https://github.com/nodemailer/nodemailer/releases)
- [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md)
- [Commits](nodemailer/nodemailer@v6.6.5...v6.7.0)

---
updated-dependencies:
- dependency-name: nodemailer
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump axios from 0.22.0 to 0.23.0

Bumps [axios](https://github.com/axios/axios) from 0.22.0 to 0.23.0.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/master/CHANGELOG.md)
- [Commits](axios/axios@v0.22.0...v0.23.0)

---
updated-dependencies:
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump bufferutil from 4.0.4 to 4.0.5

Bumps [bufferutil](https://github.com/websockets/bufferutil) from 4.0.4 to 4.0.5.
- [Release notes](https://github.com/websockets/bufferutil/releases)
- [Commits](websockets/bufferutil@v4.0.4...v4.0.5)

---
updated-dependencies:
- dependency-name: bufferutil
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump utf-8-validate from 5.0.6 to 5.0.7

Bumps [utf-8-validate](https://github.com/websockets/utf-8-validate) from 5.0.6 to 5.0.7.
- [Release notes](https://github.com/websockets/utf-8-validate/releases)
- [Commits](websockets/utf-8-validate@v5.0.6...v5.0.7)

---
updated-dependencies:
- dependency-name: utf-8-validate
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump mocha from 9.1.2 to 9.1.3

Bumps [mocha](https://github.com/mochajs/mocha) from 9.1.2 to 9.1.3.
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md)
- [Commits](mochajs/mocha@v9.1.2...v9.1.3)

---
updated-dependencies:
- dependency-name: mocha
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* updated dependencies

* updated dependencies

* default to node 14 for builds

* introduced authentication header for websocket connection

* introduced connection and instance uuid for ris live

* fixed traling slash on ws parameters

* introduced timeout verification in case of missing open message from websocket

* avoid setting multiple open connect timeouts

* APM-12040 fix build job

* APM-12040 run apt-update to update packages

* APM-12040 fix merge bugs

Co-authored-by: Massimo Candela <[email protected]>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: Massimo Candela <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: raymonvdm <[email protected]>
Co-authored-by: Tristan Helmich <[email protected]>
Co-authored-by: Chris W <[email protected]>
Co-authored-by: Gavin Henry <[email protected]>

* Apm 12230 override http user agent (#8)

* APM-12230 http user agent override to AppNeta BGP Prefix Monitor

* APM-12041 remove configuration download and cleanup logging (#6)

* APM-12044 update http agent properties to improve prefix generation (#9)

* APM-12044 update http agent properties to improve prefix generation performance
-  add default configuration path
- remove software update in generated config
- try catch the JSON.stringify call and reject the promise

Co-authored-by: Massimo Candela <[email protected]>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: Massimo Candela <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: raymonvdm <[email protected]>
Co-authored-by: Tristan Helmich <[email protected]>
Co-authored-by: Chris W <[email protected]>
Co-authored-by: Gavin Henry <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working next release Implemented but will be released with the next release
Projects
None yet
Development

No branches or pull requests

2 participants