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.3.0
|
version: 0.4.0
|
||||||
version_scheme: semver
|
version_scheme: semver
|
||||||
|
10
CHANGELOG.md
10
CHANGELOG.md
@ -1,3 +1,10 @@
|
|||||||
|
## 0.4.0 (2024-02-26)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- **docker**: update trusted CA certificates on start
|
||||||
|
- **docker**: add trace output to determine install path for package
|
||||||
|
|
||||||
## 0.3.0 (2024-02-25)
|
## 0.3.0 (2024-02-25)
|
||||||
|
|
||||||
### Feat
|
### Feat
|
||||||
@ -34,8 +41,6 @@
|
|||||||
|
|
||||||
- **server**: use correct sql syntax to insert ipaddress
|
- **server**: use correct sql syntax to insert ipaddress
|
||||||
- **agent**: only attempt to scan subnet if subnets were returned
|
- **agent**: only attempt to scan subnet if subnets were returned
|
||||||
- **agent**: cater for api call that returns nothing
|
|
||||||
- **docker**: ensure correct variable used to install package
|
|
||||||
- **build**: ensure the correct tags and architectures are published
|
- **build**: ensure the correct tags and architectures are published
|
||||||
|
|
||||||
### Refactor
|
### Refactor
|
||||||
@ -60,4 +65,3 @@
|
|||||||
- **ci**: ensure docker publish uses correct tag
|
- **ci**: ensure docker publish uses correct tag
|
||||||
- **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
|
|
||||||
|
@ -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.3.0
|
version: 0.4.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.3.0
|
http_agent: nfc-phpipam-scan-agent/0.4.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.3.0
|
http_agent: nfc-phpipam-scan-agent/0.4.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