2
.cz.yaml
2
.cz.yaml
@ -4,5 +4,5 @@ commitizen:
|
|||||||
prerelease_offset: 1
|
prerelease_offset: 1
|
||||||
tag_format: $version
|
tag_format: $version
|
||||||
update_changelog_on_bump: false
|
update_changelog_on_bump: false
|
||||||
version: 0.2.0
|
version: 0.3.0
|
||||||
version_scheme: semver
|
version_scheme: semver
|
||||||
|
13
CHANGELOG.md
13
CHANGELOG.md
@ -1,3 +1,15 @@
|
|||||||
|
## 0.3.0 (2024-02-25)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- **server**: DNS Reverse Lookup for IP Address'
|
||||||
|
- **server**: Convert scanned time within scan report to UTC
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- **ci**: http user_agent version set during version bump
|
||||||
|
- **server**: Time of last access for scan agent to use 'now'
|
||||||
|
|
||||||
## 0.2.0 (2024-02-24)
|
## 0.2.0 (2024-02-24)
|
||||||
|
|
||||||
### Feat
|
### Feat
|
||||||
@ -49,4 +61,3 @@
|
|||||||
- **ci**: ensure correct github sync repo is used
|
- **ci**: ensure correct github sync repo is used
|
||||||
- **ci**: ensure docker build and publish occurs
|
- **ci**: ensure docker build and publish occurs
|
||||||
- Don't process results if scan report is empty
|
- Don't process results if scan report is empty
|
||||||
- **docs**: correct nav link
|
|
||||||
|
@ -8,7 +8,7 @@ namespace: nofusscomputing
|
|||||||
name: phpipam_scan_agent
|
name: phpipam_scan_agent
|
||||||
|
|
||||||
# The version of the collection. Must be compatible with semantic versioning
|
# The version of the collection. Must be compatible with semantic versioning
|
||||||
version: 0.2.0
|
version: 0.3.0
|
||||||
|
|
||||||
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
|
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
|
||||||
readme: README.md
|
readme: README.md
|
||||||
|
@ -63,7 +63,7 @@
|
|||||||
{%- endif %}
|
{%- endif %}
|
||||||
headers:
|
headers:
|
||||||
token: "{{ api_token }}"
|
token: "{{ api_token }}"
|
||||||
http_agent: nfc-phpipam-scan-agent/0.2.0-a2
|
http_agent: nfc-phpipam-scan-agent/0.3.0
|
||||||
return_content: true
|
return_content: true
|
||||||
status_code:
|
status_code:
|
||||||
- 200
|
- 200
|
||||||
|
@ -164,7 +164,7 @@
|
|||||||
ansible.builtin.uri:
|
ansible.builtin.uri:
|
||||||
headers:
|
headers:
|
||||||
Authorization: "Bearer {{ nofusscomputing_phpipam_scan_agent.auth_token | default('no-token-set') }}"
|
Authorization: "Bearer {{ nofusscomputing_phpipam_scan_agent.auth_token | default('no-token-set') }}"
|
||||||
http_agent: nfc-phpipam-scan-agent/0.2.0-a2
|
http_agent: nfc-phpipam-scan-agent/0.3.0
|
||||||
url: "{{
|
url: "{{
|
||||||
nofusscomputing_phpipam_scan_agent.http_server | default(nfc_c_http_server)
|
nofusscomputing_phpipam_scan_agent.http_server | default(nfc_c_http_server)
|
||||||
}}:{{ nofusscomputing_phpipam_scan_agent.http_port | default(nfc_c_http_port) }}/"
|
}}:{{ nofusscomputing_phpipam_scan_agent.http_port | default(nfc_c_http_port) }}/"
|
||||||
|
Reference in New Issue
Block a user