Release Notes
3.1.0
July 25, 2025
New Features
Added support for
editionId
hint that allows consumers to activate specific edition of a product to make required features available to end users.editionId
is an optional argument withActivate
call.Added
Attributes
property of typeIAttributeSet
toIActivation
interface, placing alongside the existingFeatures
property, for easier access.
Changes
Marked
Features
andAttributes
properties inActivationInfo
class as obsolete to encourage migration to the new interface-based approach.
Note: Obsolete features will be removed in version 4.0.0. Please migrate to the new interface-based approach for attribute and feature management.
Download: Zentitle.Licensing.Client.3.1.0.zip
3.0.1
June 27, 2025
Bug Fixes
The
IActivation.Features
andIActivation.Info.Features
had inconsistent state after refresh operation (both online and offline) once there were changes made to entitlement on server side.
Download: Zentitle.Licensing.Client.3.0.1.zip
2.2.4
June 27, 2025
Bug Fixes
The
IActivation.Features
andIActivation.Info.Features
had inconsistent state after refresh operation (both online and offline) once there were changes made to entitlement on server side.
Download: Zentitle.Licensing.Client.2.2.4.zip
3.0.0
April 28, 2025
Enhanced Concurrency Management
Added native support for system-wide locking through the new
ISharedActivation
interfaceRemoved
UseActivationOperationLock
from activation options (custom lock implementations are no longer needed; useISharedActivation
for cross-process scenarios)
Simplified API Design
Moved all feature-related operations (
CheckoutFeature
,ReturnFeature
,TrackFeatureUsage
) fromIActivation.Features
to theIActivation
interface for more intuitive usageAll feature operations now use the
IActivationFeature
interface as input for more reliable accessWhen a feature action succeeds,
IActivationFeature
represents the current state of the feature, including recent changes from other activations
Improved Documentation
Enhanced exception information throughout the API
Extended the list of possible error responses from the server through the
ApiErrorCodes
static classAdded comprehensive documentation for common error scenarios
Download: Zentitle.Licensing.Client.3.0.0.zip
2.2.3
November 21, 2024
Improvements
The
IActivation.DeactivateOffline()
method permitted in theEntitlementNotActiveState
.
Download: Zentitle.Licensing.Client.2.2.3.zip
2.2.2
November 18, 2024
Improvements
The
IActivation.Deactivate()
method is now permitted in theEntitlementNotActiveState
. Instead of raising anIllegalActivationOperationException
, it clears the local state storage and transitions the activation instance to theNotActivated
state.
Download: Zentitle.Licensing.Client.2.2.2.zip
2.2.1
November 8, 2024
Bug Fixes
The client (version 2.2.0) would previously throw an exception when calling
IActivation.RefreshLease
method in a specific scenario:ActivationStateModel.LeaseExpiry
equals the Entitlement Expiry Date (because the previousRefreshLease
already extended the lease to the maximum, which is Entitlement Expiry Date). This is a new behavior introduced with API version 2024-11-07. After this fix, the method will NOT throw an exception but will returnfalse
to indicate that the Activation Lease Expiry can no longer be prolonged.
Download: Zentitle.Licensing.Client.2.2.1.zip
2.2.0
November 6, 2024
Improvements
Using Licensing API version 2024-11-07
Performance - Activate and Feature Activate/Return operations now refresh the Activation state from response instead of an extra call to the Get Activation State endpoint.
Download: Zentitle.Licensing.Client.2.2.0.zip
2.1.0
Improvements
The
activation.Info.Entitlement
object has been extended with the following properties to eliminate the need to retrieve entitlement information through the Licensing API:ConcurrencyMode
HasManintenance
andMaintenanceExpiryDate
Download: Zentitle.Licensing.Client.2.1.0
2.0.0
Improvements
Added support for Zentitle2Core Library integration, including the following features:
Device Fingerprint
Offline Activation
Secure Storage
Removed dependency on the
Microsoft.IdentityModel.Tokens
NuGet package
Breaking Changes
Offline activation requires Zentitle2Core Library integration, and it accepts the
TenantRsaKeyModulus
string parameter instead of theJsonWebKey
objectFileActivationStorage
has been renamed toPlainTextFileActivationStorage
Download: Zentitle.Licensing.Client.2.0.0
1.4.6
Download: Zentitle.Licensing.Client.1.4.6.zip
Improvements
Added support for bool features usage tracking
1.4.5
Download: Zentitle.Licensing.Client.1.4.5.zip
Bug Fixes
Fixed bug with in-memory cached persistence state not properly cleared after the seat deactivation
1.4.4
Download: Zentitle.Licensing.Client.1.4.4.zip
Improvements
Added locking to the
Activation
class to prevent possible concurrency issues and make it thread-safe. Check Configuring the Activation section for more detailsEntitlement status in the
EntitlementInfo
respects the entitlement dates and is automatically updated after the entitlement enters the grace period or expires
Bug Fixes
When the seat's lease period expires at the same time as the entitlement, the
Activation
transitions into theEntitlementNotActive
state instead of theLeaseExpired
state.
1.4.3
Download: Zentitle.Licensing.Client.1.4.3.zip
Improvements
[Breaking Change] Dropped support for the
Consumption Token
andFloating
feature types
1.4.2
Download: Zentitle.Licensing.Client.1.4.2.zip
Improvements
Added support for a new Usage Count feature type
1.4.1
Download: Zentitle.Licensing.Client.1.4.1.zip
Improvements
Activation entitlement has been added to the offline activation tokens and can be retrieved using the
GetActivationEntitlement()
method[Breaking Change]
PersistentData
contains newOfflineActivationEntitlement
field. Make sure that it's being handled properly in yourIActivationStorage
implementation.
1.4.0
Improvements
[Breaking Change] Changed offline activation token format
Added support for username/password license activation flow
Added maintenance fields to activation's entitlement
1.3.0
Improvements
Logging improvements
1.2.0
Improvements
Activation state management
[Breaking Change] The
OfflineActivated
state has been removed because it has been merged with theActive
state. TheInfo.Mode
activation property can be used to distinguish between theOnline
andOffline
activated seat.[Breaking Change] The
Expired
state has been renamed toLeaseExpired
state[Breaking Change] The
NotActive
state has been renamed toNotActivated
stateA new
EntitlementNotActive
state has been added, which represents an activated seat with no active entitlement (license) - e.g., the entitlement has expired or has been disabled on the server
Activation methods changes
[Breaking Change] The
Refresh()
method has been renamed toRefreshLease()
[Breaking Change] The
RefhreshOffline()
method has been renamed toRefreshLeaseOffline()
The
Deactivate()
method returns bool now, indicating if the deactivation has been successful or not
The number of API calls inside the
RefreshLease()
method has been reduced from 2 to 1Documentation is now available for all public classes and methods of the SDK code
Bug Fixes
When the entitlement is no longer active on the server (because it has expired/has been disabled), the
Refresh()
,Deactivate()
andPullRemoteState()
methods are no longer transitioning the activation into theNotActive
state but into theEntitlementNotActive
state. In this state, thePullRemoteState()
method can be used to transition back to the previous state if the entitlement becomes active again. If that isn't the case, theActivate()
method can be used in this state to activate the seat with another entitlement.If there is an API exception raised because of the invalid nonce, the activation doesn't fall into the
NotActivated
state, but the API error is propagated out of the library.
1.1.0
Improvements
Added
PullPersistedState()
activation method, which allows retrieving the activation state from the storage, even if the activation has been initialized already. If there are some changes in the persistence (made by other processes accessing the same activation) when calling this method, they will be reflected in the activation's in-memory state.
1.0.0
The initial version of Zentitle.Licensing.Client
SDK
Last updated
Was this helpful?