Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 26 additions & 26 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,29 +32,29 @@ jobs:
uses: codecov/[email protected]
with:
file: code42cli/coverage.xml
# - name: Checkout mock servers
# uses: actions/checkout@v2
# with:
# repository: code42/code42-mock-servers
# path: code42-mock-servers
# - name: Add mock servers host addresses
# run: |
# sudo tee -a /etc/hosts <<EOF
# 127.0.0.1 core
# 127.0.0.1 alerts
# 127.0.0.1 alert-rules
# 127.0.0.1 detection-lists
# 127.0.0.1 audit-log
# 127.0.0.1 file-events
# 127.0.0.1 storage
# 127.0.0.1 preservation-data-service
# 127.0.0.1 connected-server
# 127.0.0.1 cases
# 127.0.0.1 trusted-activities-service
# EOF
# - name: Install ncat
# run: sudo apt-get install ncat
# - name: Start up the mock servers
# run: cd code42-mock-servers; docker-compose up -d --build
# - name: Run the integration tests
# run: cd code42cli; tox -e integration
- name: Checkout mock servers
uses: actions/checkout@v2
with:
repository: code42/code42-mock-servers
path: code42-mock-servers
- name: Add mock servers host addresses
run: |
sudo tee -a /etc/hosts <<EOF
127.0.0.1 core
127.0.0.1 alerts
127.0.0.1 alert-rules
127.0.0.1 detection-lists
127.0.0.1 audit-log
127.0.0.1 file-events
127.0.0.1 storage
127.0.0.1 preservation-data-service
127.0.0.1 connected-server
127.0.0.1 cases
127.0.0.1 trusted-activities-service
EOF
- name: Install ncat
run: sudo apt-get install ncat
- name: Start up the mock servers
run: cd code42-mock-servers; docker-compose up -d --build
- name: Run the integration tests
run: cd code42cli; tox -e integration
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
The intended audience of this file is for py42 consumers -- as such, changes that don't affect
how a consumer would use the library (e.g. adding unit tests, updating documentation, etc) are not captured here.

## Unreleased
## 1.11.1 - 2021-11-09

### Changed
- Updated minimum version of py42 to `1.19.3` to provide access to updated URI paths for new standardized versioning scheme
Expand Down
2 changes: 1 addition & 1 deletion src/code42cli/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.11.0"
__version__ = "1.11.1"