Update dependency censys to v2.2.14
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| censys (changelog) | ==2.1.1 -> ==2.2.14 |
Release Notes
censys/censys-python (censys)
v2.2.14
What's Changed
- fix: improve pagination for asm search and saved queries in https://github.com/censys/censys-python/pull/643
Full Changelog: https://github.com/censys/censys-python/compare/v2.2.13...v2.2.14
v2.2.13
What's Changed
- feat(cli): Added Inventory Search and Saved Queries from CLI in https://github.com/censys/censys-python/pull/637
Full Changelog: https://github.com/censys/censys-python/compare/v2.2.12...v2.2.13
v2.2.12
What's Changed ❇️
- feat: Add support for setting request IDs to assist debugging https://github.com/censys/censys-python/pull/606
Full Changelog: https://github.com/censys/censys-python/compare/v2.2.11...v2.2.12
v2.2.11
What's Changed ❇️
- feat: Add CLI and API support for ASM saved queries in https://github.com/censys/censys-python/pull/598
Full Changelog: https://github.com/censys/censys-python/compare/v2.2.10...v2.2.11
v2.2.10
What's Changed ❇️
- Added risk events support in https://github.com/censys/censys-python/pull/585
Full Changelog: https://github.com/censys/censys-python/compare/v2.2.9...v2.2.10
v2.2.9
What's Changed ❇️
- Added new seeds CLI commands in https://github.com/censys/censys-python/pull/571
Full Changelog: https://github.com/censys/censys-python/compare/v2.2.8...v2.2.9
v2.2.8
What's Changed ❇️
- Added retry for HTTP 503 status code
Full Changelog: https://github.com/censys/censys-python/compare/v2.2.7...v2.2.8
v2.2.7
Breaking Changes :x:
-
chore(asm)!: update subdomains assets class
- The
SubdomainsAssetsno longer requires the base domain as an input
- The
- fix!: update the view_host_events to return a dict instead of just a list
Full Changelog: https://github.com/censys/censys-python/compare/v2.2.6...v2.2.7
v2.2.6
What's Changed ❇️
- Added post search methods for hosts in https://github.com/censys/censys-python/pull/541
Full Changelog: https://github.com/censys/censys-python/compare/v2.2.5...v2.2.6
v2.2.5
What's Changed ❇️
- Added
--timeoutoption for the Search CLI command in https://github.com/censys/censys-python/pull/537 - Updated CLI and Autocomplete in https://github.com/censys/censys-python/pull/519
- Added build docs ci step in https://github.com/censys/censys-python/pull/530
Full Changelog: https://github.com/censys/censys-python/compare/v2.2.4...v2.2.5
v2.2.4
What's Changed ❇️
- Removed Python 3.7 support in https://github.com/censys/censys-python/pull/511
- Removed Search Certs v1 API in https://github.com/censys/censys-python/pull/514
- Fixed object storages assets client in https://github.com/censys/censys-python/pull/510
- Updated the method to specify search fields in https://github.com/censys/censys-python/pull/512
Full Changelog: https://github.com/censys/censys-python/compare/v2.2.3...v2.2.4
v2.2.3
What's Changed ❇️
- This is the last version to support Python 3.7
- Added Beta Endpoints in https://github.com/censys/censys-python/pull/496
Breaking Changes :x:
-
Renamed the ASM API Client
EventstoLogbookfor consistency- Imports will need to be updated.
Old Imports
from censys.asm.events import EventsNew Imports ✨
from censys.asm.logbook import Logbook
Full Changelog: https://github.com/censys/censys-python/compare/v2.2.2...v2.2.3
v2.2.2
What's Changed ❇️
- Made dependencies more flexible in https://github.com/censys/censys-python/pull/484
- Fixed issue with building docs
Full Changelog: https://github.com/censys/censys-python/compare/v2.2.1...v2.2.2
v2.2.1
What's Changed ❇️
- Added Autocomplete support for CLI and Search Queries in https://github.com/censys/censys-python/pull/482
- Enhanced API retry logic in https://github.com/censys/censys-python/pull/481
- Fixed issue that prevented retrying when receiving a 500 error message in https://github.com/censys/censys-python/pull/478
Full Changelog: https://github.com/censys/censys-python/compare/v2.2.0...v2.2.1
v2.2.0
What's Changed ❇️
-
Added Certs V2 (
CensysCerts) and Web Entities (WebEntitiesAssets) API Support in https://github.com/censys/censys-python/pull/468 -
Added deprecation for Certs V1 This is going away soon, please switch to Certs v2 (docs)
- See example using the search method:
examples/search/search_certs.py
- See example using the search method:
-
Added Certificate index to the
viewandsearchcommands- Try it now:
censys view 9b00121b4e85d50667ded1a8aa39855771bdb67ceca6f18726b49374b41f0041 --index-type certificates
Or
censys search 'names: censys.io' --index-type certificates --fields names
* Enhanced the `subdomains` command using the new Certs V2 API
#### Breaking Changes :x:
* Removed `Risksv1` and renamed `Risksv2` to simply `Risks`.
* Imports will need to be updated.
**Old Imports**
```python
from censys.asm.risks.v2 import Risksv2
New Imports ✨
from censys.asm.risks import Risks
-
Removed Certs V1
Legacy Certs V1 Imports
from censys.search import CensysCertificatesNew Certs V2 Imports ✨
from censys.search import CensysCerts
Make sure to update queries and pagination logic
* Removed Certs V1 from CLI
**Full Changelog**: https://github.com/censys/censys-python/compare/v2.1.9...v2.2.0
v2.1.9
What's Changed
- feat(asm-api): Add Inventory Search in https://github.com/censys/censys-python/pull/374
- fix: raise certificates index timeout to match server in https://github.com/censys/censys-python/pull/384
Full Changelog: https://github.com/censys/censys-python/compare/v2.1.8...v2.1.9
v2.1.8
What's Changed
- Fixed various issues and updated docs in https://github.com/censys/censys-python/pull/352
- Deprecated Risks v1 in https://github.com/censys/censys-python/pull/359
Full Changelog: https://github.com/censys/censys-python/compare/v2.1.7...v2.1.8
v2.1.7
What's Changed
- Update pyproject.toml in https://github.com/censys/censys-python/pull/324
- Add main.py in https://github.com/censys/censys-python/pull/330
- Update Search CLI Options in https://github.com/censys/censys-python/pull/347
Full Changelog: https://github.com/censys/censys-python/compare/v2.1.6...v2.1.7
v2.1.6
What's Changed
- feat(cli): Add nmap xml input in https://github.com/censys/censys-python/pull/312
- docs(cli): Update add-seeds docs in https://github.com/censys/censys-python/pull/315
- chore(docs): Update CLI gif in https://github.com/censys/censys-python/pull/320
Full Changelog: https://github.com/censys/censys-python/compare/v2.1.5...v2.1.6
v2.1.5
What's Changed
- feat(cli): New Subdomain enumeration CLI (
censys subdomains) in https://github.com/censys/censys-python/pull/302 - test(cli): Update CLI tests in https://github.com/censys/censys-python/pull/305
- test(asm): Update ASM tests in https://github.com/censys/censys-python/pull/309
- test(search): Update Search tests in https://github.com/censys/censys-python/pull/311
Full Changelog: https://github.com/censys/censys-python/compare/v2.1.4...v2.1.5
v2.1.4
What's Changed
- build(deps): Drop Python 3.6 Support in https://github.com/censys/censys-python/pull/296
- build(deps): Update backoff dependency to 2.x in https://github.com/censys/censys-python/pull/294
- feat(asm): Add API support for asset discovery trails in https://github.com/censys/censys-python/pull/291
- fix: Update language to match ASM in https://github.com/censys/censys-python/pull/295
Full Changelog: https://github.com/censys/censys-python/compare/v2.1.3...v2.1.4
v2.1.3: Release v2.1.3
What's Changed
- This is the last version to support Python 3.6
- feat(api): Add v2 Risks API in https://github.com/censys/censys-python/pull/257
- chore(docs): Update docs to include new APIs in https://github.com/censys/censys-python/pull/240
- chore(api): Add virtual_hosts to the aggregate function in https://github.com/censys/censys-python/pull/241
- chore(cli): Warn on invalid file format output for Search/View v2 CLI in https://github.com/censys/censys-python/pull/266
- chore(deps): bump rich from 11.0.0 to 11.1.0 in https://github.com/censys/censys-python/pull/244
- chore(deps): bump sphinx-copybutton from 0.4.0 to 0.5.0 in https://github.com/censys/censys-python/pull/250
- chore(deps): bump rich from 11.1.0 to 11.2.0 in https://github.com/censys/censys-python/pull/251
Full Changelog: https://github.com/censys/censys-python/compare/v2.1.2...v2.1.3
v2.1.2: Release v2.1.2
What's Changed
- feat(api): Added support for the Host Diff API
- feat(cli): Improved config options
- chore(api): Enhance multithreaded API calls
- chore(cli): Improve error handling and tests
- chore(docs): Improve usage docs
- chore(deps): Update dependencies
- fix(deps): Correct importlib-metadata versions
Full Changelog: https://github.com/censys/censys-python/compare/v2.1.1...v2.1.2
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.