if our license expires and we later renew it Does your system create a new API key automatically ?
I am unable to see that key . But if we don't renew does that mean we can still develop solution without upgrading packages right ?
key is different inside the project when i create new one . So I updated that new key with old and it started working. Does that mean api was changed?. How do we change or find our api key ?
Just adding one example of error below
Unable to find package Volo.Saas.Host.Application.Contracts with version (>= 8.3.2) error NU1102: - Found 117 version(s) in ABP Commercial NuGet Source [ Nearest version: 7.0.3 ]
Does this mean every time we update projects to new version we also have to update Nuget.Config with new nuget urls from abp ?
Microsoft has release Azure service bus emulator . But current azure service event bus integration does not make use of azure emulator connection string and unable to connect with trying to connect at 443 port rather then skipping TLS negotiation and connecting on 5672 ports. I think azure service bus package need to updated inside Volo.Abp.EventBus.AzureServiceBus package to make emulator work . https://learn.microsoft.com/en-us/azure/service-bus-messaging/overview-emulator
https://community.cloudflare.com/t/how-to-turn-off-are-you-a-human/635902 I can open the same link with Browser but CLI or abp studio login fails for this url with 403 https://account.abp.io/.well-known/openid-configuration
+1 any ETA on this guys,All deplyment pipelines are also down due to DNS issue for Nuget?
Thanks That worked
This I abp implementation when saving Audit Porperty Changes. As in MongoDb Case I am adding custom Entity Change object which Is bigger as its in Sterilized object. But Implementation we currently have Truncate the Value before Audit Information is saved. There is no way to override it either. Can you explain how can I override **EntityPropertyChangeConsts.MaxNewValueLength
** , If not Then Any other way to set the value on NewValue as its protected Set.
[DisableAuditing]
public class EntityPropertyChange : Entity<Guid>, IMultiTenant
{
public virtual Guid? TenantId { get; protected set; }
public virtual Guid EntityChangeId { get; protected set; }
public virtual string NewValue { get; protected set; }
public virtual string OriginalValue { get; protected set; }
public virtual string PropertyName { get; protected set; }
public virtual string PropertyTypeFullName { get; protected set; }
protected EntityPropertyChange()
{
}
public EntityPropertyChange(
IGuidGenerator guidGenerator,
Guid entityChangeId,
EntityPropertyChangeInfo entityChangeInfo,
Guid? tenantId = null)
{
Id = guidGenerator.Create();
TenantId = tenantId;
EntityChangeId = entityChangeId;
**NewValue = entityChangeInfo.NewValue.Truncate(EntityPropertyChangeConsts.MaxNewValueLength);**
OriginalValue = entityChangeInfo.OriginalValue.Truncate(EntityPropertyChangeConsts.MaxOriginalValueLength);
PropertyName = entityChangeInfo.PropertyName.TruncateFromBeginning(EntityPropertyChangeConsts.MaxPropertyNameLength);
PropertyTypeFullName = entityChangeInfo.PropertyTypeFullName.TruncateFromBeginning(EntityPropertyChangeConsts.MaxPropertyTypeFullNameLength);
}
}