Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
xlz-jbleclere committed Nov 9, 2020
1 parent b153040 commit 5016e97
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 12 deletions.
19 changes: 15 additions & 4 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
* Wed Nov 09 2020 Accelize v2.5.1
- NEW: Add support of derived product
- FIX: Refactor request timeout: separate connection and request timeouts
* Mon Nov 09 2020 Accelize v2.5.1
- NEW: Support derived product feature (not yet activated at server side)
- NEW: Improve retry mechanism: make connection and request timeouts independent, increase timeout period, optimize resource, HTTP codes 495 and 526 are retryable
- NEW: Enhance API function behavior: "resume" function now start automatically a new session if the pending session has expired
- NEW: Enhance logging: Flush logger before API function returns, support of append/truncate mode, update spdlog library to v1.8.1
- NEW: Refactor automated CI jobs: run periodically health tests on the creation and the testing of packages
- NEW: Change prerelease directory for DEB and remove from documentation
- NEW: Enhance CI regression: more use cases, better code coverage, better reporting
- FIX: DRM Controller Activation timeout issue occurring on the resume function has been solved
- FIX: Display XRT utility error message
- DOC: Add new parameters
- FIX: Better reporting of messages returned by xbutil
- FIX: Solve memory leak
- DOC: Update list of parameters, logo
- DOC: Correct file paths and names
- DOC: Add SDK and HDK migration sections
- DOC: Add uninstall section

* Wed Sep 09 2020 Accelize v2.5.0
- NEW: Add support of the asynchronous metering mechanism
Expand Down
8 changes: 4 additions & 4 deletions deployment/runTestFromPkgOnEc2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- template: agents/start.yml@acid
parameters:
jobName: startAgent_Aws_${{ config.os_distrib }}
agentDescription: AWS with ${{ config.os_distrib }}
agentDescription: AWS ${{ config.os_distrib }}
provider: awsEc2
image: ${{ config.os_distrib }}
instanceType: ${{ parameters.instance_type }}
Expand All @@ -26,13 +26,13 @@ jobs:

# Install Package on AWS agent
- job: runTests_Aws_${{ config.os_distrib }}
displayName: Install and run tests on AWS with ${{ config.os_distrib }}
displayName: Install and run tests on AWS ${{ config.os_distrib }}
dependsOn: startAgent_Aws_${{ config.os_distrib }}
condition: succeededOrFailed()
pool:
name: Default
demands: # Use previously instantiated agent
- agent.Name -equals $(Build.BuildId) $(Build.DefinitionName) AWS with ${{ config.os_distrib }}
- agent.Name -equals $(Build.BuildId) $(Build.DefinitionName) AWS ${{ config.os_distrib }}
steps:
- checkout: self
submodules: true
Expand Down Expand Up @@ -116,6 +116,6 @@ jobs:
parameters:
jobName: stopAgent_Aws_${{ config.os_distrib }}
provider: awsEc2
agentDescription: AWS with ${{ config.os_distrib }}
agentDescription: AWS ${{ config.os_distrib }}
acidDir: $(Build.SourcesDirectory)/deployment/acid
dependsOn: runTests_Aws_${{ config.os_distrib }}
8 changes: 4 additions & 4 deletions deployment/runTestOnEc2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- template: agents/start.yml@acid
parameters:
jobName: startAgent_Aws_${{ config.os_distrib }}
agentDescription: AWS with ${{ config.os_distrib }}
agentDescription: AWS ${{ config.os_distrib }}
provider: awsEc2
image: ${{ config.os_distrib }}
instanceType: ${{ parameters.instance_type }}
Expand All @@ -28,13 +28,13 @@ jobs:

# Run tests on AWS agent
- job: runTests_Aws_${{ config.os_distrib }}
displayName: Run tests on AWS with ${{ config.os_distrib }}
displayName: Run tests on AWS ${{ config.os_distrib }}
dependsOn: startAgent_Aws_${{ config.os_distrib }}
condition: succeededOrFailed()
pool:
name: Default
demands: # Use previously instantiated agent
- agent.Name -equals $(Build.BuildId) $(Build.DefinitionName) AWS with ${{ config.os_distrib }}
- agent.Name -equals $(Build.BuildId) $(Build.DefinitionName) AWS ${{ config.os_distrib }}
variables:
${{ if eq(config.tox_coverage, true) }}:
tox_operation: aws-build-${{ config.tox_mode }},cpp-${{ config.tox_mode }},c-${{ config.tox_mode }},integration-${{ config.tox_mode }},coverage-${{ config.tox_mode }}
Expand Down Expand Up @@ -103,6 +103,6 @@ jobs:
parameters:
jobName: stopAgent_Aws_${{ config.os_distrib }}
provider: awsEc2
agentDescription: AWS with ${{ config.os_distrib }}
agentDescription: AWS ${{ config.os_distrib }}
acidDir: $(Build.SourcesDirectory)/deployment/acid
dependsOn: runTests_Aws_${{ config.os_distrib }}

0 comments on commit 5016e97

Please sign in to comment.