Indice.Features.Messages.Core 8.0.0-rc24

This is a prerelease version of Indice.Features.Messages.Core.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Indice.Features.Messages.Core --version 8.0.0-rc24
                    
NuGet\Install-Package Indice.Features.Messages.Core -Version 8.0.0-rc24
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Indice.Features.Messages.Core" Version="8.0.0-rc24" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Indice.Features.Messages.Core" Version="8.0.0-rc24" />
                    
Directory.Packages.props
<PackageReference Include="Indice.Features.Messages.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Indice.Features.Messages.Core --version 8.0.0-rc24
                    
#r "nuget: Indice.Features.Messages.Core, 8.0.0-rc24"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Indice.Features.Messages.Core&version=8.0.0-rc24&prerelease
                    
Install Indice.Features.Messages.Core as a Cake Addin
#tool nuget:?package=Indice.Features.Messages.Core&version=8.0.0-rc24&prerelease
                    
Install Indice.Features.Messages.Core as a Cake Tool

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[8.0.0] - 2024-12-03

  • Added support for persisting User communication channel preferences, locale and Consent.
  • Campaign and Template define whether user communication preferences must be ingored if needed.
  • Send messages respects user communication preferences unless campaign specifies otherwise
ALTER TABLE [#Schema#].[Campaign]
ADD IgnoreUserPreferences BIT DEFAULT(0) NOT NULL;
GO
ALTER TABLE [#Schema#].[Contact]
ADD 
	CommunicationPreferences TINYINT DEFAULT(0) NOT NULL,
	ConsentCommercial		 BIT DEFAULT(0) NOT NULL,
	Locale					 VARCHAR(16);
GO
ALTER TABLE [#Schema#].[DistributionListContact]
ADD Unsubscribed BIT DEFAULT(0) NOT NULL;	
GO
ALTER TABLE [#Schema#].[Template]
ADD IgnoreUserPreferences BIT DEFAULT(0) NOT NULL;
GO
ALTER TABLE [#Schema#].[MessageType]
ADD Classification TINYINT DEFAULT(0) NOT NULL;		
GO

[7.27.0] - 2024-07-26

Added

  • Added support for persisting sample data for facilitating template rendering on message templates.
ALTER TABLE [cmp].[Template]
ADD [Data] [nvarchar](max) NULL
GO

[7.23.0] - 2024-05-16

Added

  • New column MediaBaseHref in DbCampaign
ALTER TABLE [cmp].[Campaign]
ADD [MediaBaseHref] [nvarchar](1024) NULL

[7.4.4] - 2023-10-04

Added

  • ContactRetainPeriodInDays option to keep in sync a contact with the identity system. After the configured period of time the system patches and updates the contact with the latest values.

[7.4.1] - 2023-09-22

Changed

  • CampaignId is returned in PushNotification data in property "messageId". Intentioanally added for naming consistency. external MessageId == internal CampaignId.

[7.3.8] - 2023-08-07

Added

  • Message Id is included in PushNotification data
  • Inbox service enhanced to return other channels also

[7.3.7] - 2023-08-02

Added

  • New entity DbMessageSender

Migration

CREATE TABLE [dbo].[MessageSender](
	[Id] [uniqueidentifier] NOT NULL,
	[Sender] [nvarchar](max) NULL,
	[DisplayName] [nvarchar](max) NULL,
	[Kind] [tinyint] NOT NULL,
	[IsDefault] [bit] NOT NULL,
	[CreatedBy] [nvarchar](max) NULL,
	[CreatedAt] [datetimeoffset](7) NOT NULL,
	[UpdatedBy] [nvarchar](max) NULL,
	[UpdatedAt] [datetimeoffset](7) NULL,
 CONSTRAINT [PK_MessageSender] PRIMARY KEY CLUSTERED 
(
	[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on Indice.Features.Messages.Core:

Package Downloads
Indice.Features.Messages.AspNetCore

Package Description

Indice.Features.Messages.Worker.Azure

Package Description

Indice.Features.Messages.Worker

Package Description

Indice.Hive.Core

Package Description

Indice.Hive.Server

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.0-rc25 123 3 days ago
8.0.0-rc24 147 9 days ago
8.0.0-rc23 169 17 days ago
8.0.0-rc22 293 a month ago
8.0.0-rc21 234 a month ago
8.0.0-rc20 118 a month ago
8.0.0-rc19 160 a month ago
8.0.0-rc18 120 2 months ago
8.0.0-rc17 105 2 months ago
8.0.0-rc16 138 2 months ago
8.0.0-rc15 278 2 months ago
8.0.0-rc14 126 2 months ago
8.0.0-rc13 138 2 months ago
8.0.0-rc12 92 3 months ago
8.0.0-rc11 93 3 months ago
8.0.0-rc10 128 3 months ago
8.0.0-rc09 161 4 months ago
8.0.0-rc08 107 4 months ago
8.0.0-rc07 107 4 months ago
8.0.0-rc06 109 4 months ago
8.0.0-rc05 103 4 months ago
8.0.0-rc04 100 4 months ago
8.0.0-rc03 85 4 months ago
8.0.0-rc02 96 4 months ago
8.0.0-rc01 69 4 months ago
7.47.0 316 4 months ago
7.46.0 137 4 months ago
7.45.0 144 4 months ago
7.44.0 141 4 months ago
7.43.4 141 4 months ago
7.43.3 145 4 months ago
7.43.2 146 4 months ago
7.43.1 143 4 months ago
7.43.0 144 4 months ago
7.42.0 144 4 months ago
7.41.0 130 5 months ago
7.40.0 139 5 months ago
7.39.0 136 5 months ago
7.38.0 136 5 months ago
7.37.0 143 5 months ago
7.36.0 136 5 months ago
7.35.0 136 5 months ago
7.34.0 929 5 months ago
7.33.0 135 5 months ago
7.32.0 175 6 months ago
7.31.0 183 6 months ago
7.30.0 168 6 months ago
7.29.0 247 7 months ago
7.28.0 351 8 months ago
7.27.0 111 8 months ago
7.26.0 104 8 months ago
7.25.0 290 9 months ago
7.24.0 172 9 months ago
7.23.1 183 9 months ago
7.23.0 183 6/3/2024
7.22.5 376 5/13/2024
7.22.4 222 4/2/2024
7.22.3 192 3/21/2024
7.22.2 182 3/21/2024
7.22.1 193 3/21/2024
7.22.0 432 3/14/2024
7.21.0 191 3/12/2024
7.20.1 191 2/15/2024
7.20.0 290 2/8/2024
7.19.0 177 1/29/2024
7.18.0 230 1/9/2024
7.17.0 222 1/5/2024
7.16.0 191 1/4/2024
7.15.0 180 1/3/2024
7.14.0 253 12/15/2023
7.13.0 202 12/12/2023
7.12.0 223 12/11/2023
7.11.1 258 11/29/2023
7.11.0 199 11/27/2023
7.10.0 196 11/24/2023
7.8.0 199 11/17/2023
7.7.0 234 11/1/2023
7.6.4 210 10/20/2023
7.6.3 219 10/13/2023
7.6.2 216 10/12/2023
7.6.1 250 10/11/2023
7.6.1-beta-01 102 10/11/2023
7.6.0 221 10/10/2023
7.5.1 212 10/10/2023
7.5.0 230 10/5/2023
7.4.4 205 10/4/2023
7.4.3 213 9/28/2023
7.4.2 238 9/27/2023
7.4.1 222 9/22/2023
7.4.0 198 9/19/2023
7.3.24 213 9/15/2023
7.3.23 224 9/14/2023
7.3.22 199 9/12/2023
7.3.21 209 9/8/2023
7.3.20 210 9/6/2023
7.3.19 179 9/6/2023
7.3.18 207 9/5/2023
7.3.17 3,355 8/29/2023
7.3.16 226 8/24/2023
7.3.15 218 8/24/2023
7.3.14 201 8/23/2023
7.3.13 207 8/22/2023
7.3.12 226 8/14/2023
7.3.11 253 8/10/2023
7.3.10 240 8/10/2023
7.3.9 239 8/10/2023
7.3.8 245 8/9/2023
7.3.7 227 8/2/2023
7.3.6 268 7/24/2023
7.3.5 370 7/10/2023
7.3.4 243 7/10/2023
7.3.3 267 7/6/2023
7.3.2 264 7/5/2023
7.3.1 290 6/26/2023
7.2.0 340 5/29/2023
7.1.6 278 5/9/2023
7.1.5 258 5/8/2023
7.1.4 275 5/2/2023
7.1.3 311 4/24/2023
7.1.2 338 4/19/2023
7.1.1 341 4/19/2023
7.1.0 363 4/13/2023
7.0.9 335 4/12/2023
7.0.8 394 4/11/2023
7.0.7 349 4/6/2023
7.0.6 396 4/2/2023
7.0.5 409 3/30/2023
7.0.4 409 3/29/2023
7.0.3 394 3/27/2023
7.0.2 423 3/23/2023
7.0.1 296 3/23/2023
7.0.0 409 3/23/2023
6.12.3 448 3/22/2023
6.12.1 408 3/20/2023
6.12.0 453 3/17/2023
6.11.1 443 3/6/2023
6.11.0 421 3/3/2023
6.10.2 494 2/16/2023
6.10.1 495 2/15/2023
6.10.0 523 2/8/2023
6.9.0 513 2/6/2023
6.8.0 538 2/3/2023
6.7.0 514 2/2/2023
6.6.0 528 1/30/2023
6.5.0 546 1/24/2023
6.4.10 727 1/20/2023
6.4.9 484 1/20/2023
6.4.5 697 1/19/2023
6.4.0 750 12/22/2022
6.2.1 909 11/16/2022
6.2.0 766 11/15/2022
6.1.14 884 11/14/2022
6.1.13 904 11/11/2022
6.1.12 1,121 10/3/2022
6.1.11 1,155 9/30/2022
6.1.10 1,152 9/23/2022
6.1.9 1,159 9/13/2022
6.1.8 1,214 9/1/2022
6.1.7 1,175 9/1/2022
6.1.6 1,517 9/1/2022
6.1.5 1,241 8/25/2022
6.1.4 1,275 8/23/2022
6.1.3 1,372 8/12/2022
6.1.0-beta-08 342 4/28/2022
6.1.0-beta-07 302 4/27/2022
6.1.0-beta-06 272 4/27/2022
6.1.0-beta-05 279 4/21/2022
6.1.0-beta-04 268 4/21/2022
6.1.0-beta-03 266 4/19/2022
6.1.0-beta-02 283 4/18/2022
6.1.0-beta-01 175 4/18/2022