Skip to content

Commit

Permalink
[ci skip] update news, docs, schema
Browse files Browse the repository at this point in the history
  • Loading branch information
satkunas committed Jan 19, 2024
1 parent f77caf7 commit cd29764
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 26 deletions.
2 changes: 1 addition & 1 deletion NEWS.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This is a list of noteworthy changes across releases.
For more details and developer visible changes see the ChangeLog file.
For a list of compatibility related changes see the <<PacketFence_Upgrade_Guide.asciidoc#,Upgrade Guide>>.
== Version X.Y.Z released on xxxx-xx-xx
== Version 13.1.0 released on 2024-01-19
=== New Features
Expand Down
File renamed without changes.
22 changes: 11 additions & 11 deletions db/upgrade-X.X-X.Y.sql → db/upgrade-13.0-13.1.sql
Original file line number Diff line number Diff line change
Expand Up @@ -60,22 +60,22 @@ DROP PROCEDURE IF EXISTS ValidateVersion;
--

CREATE TABLE IF NOT EXISTS `pki_scep_servers` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`created_at` datetime(3) DEFAULT NULL,
`updated_at` datetime(3) DEFAULT NULL,
`deleted_at` datetime(3) DEFAULT NULL,
`name` varchar(191) DEFAULT NULL,
`url` longtext DEFAULT NULL,
`shared_secret` longtext DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`),
KEY `idx_pki_scep_servers_deleted_at` (`deleted_at`)
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`created_at` datetime(3) DEFAULT NULL,
`updated_at` datetime(3) DEFAULT NULL,
`deleted_at` datetime(3) DEFAULT NULL,
`name` varchar(191) DEFAULT NULL,
`url` longtext DEFAULT NULL,
`shared_secret` longtext DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`),
KEY `idx_pki_scep_servers_deleted_at` (`deleted_at`)
) ENGINE=InnoDB DEFAULT CHARACTER SET = 'utf8mb4' COLLATE = 'utf8mb4_general_ci';
--
-- Default values for pki_scep_servers table
--

INSERT INTO `pki_scep_servers` VALUES (1,'2023-11-09 10:36:34.489','2023-11-09 10:36:34.489',NULL,'Null','http://127.0.0.1','password');
INSERT IGNORE INTO `pki_scep_servers` VALUES (1,'2023-11-09 10:36:34.489','2023-11-09 10:36:34.489',NULL,'Null','http://127.0.0.1','password');

\! echo "altering pki_cas"
ALTER TABLE `pki_cas`
Expand Down
30 changes: 16 additions & 14 deletions docs/PacketFence_Upgrade_Guide.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -1833,8 +1833,24 @@ wget https://github.com/inverse-inc/packetfence/files/10897043/rc-local.patch
patch /etc/rc.local /tmp/rc-local.patch
----
== Upgrading from a version prior to 13.0.0
=== Adding the LDAP search attributes
LDAP conditions added in the LDAP authentication source use a LDAP search to retrieve the values.
=== Switch types conversion
Two switch types will be converted to the new way of defining a switch. Now, a switch could be defined according the OS and not only the model.
=== Some unused or outdated provisionners will be removed
The following provisioners will be removed from Packetfence configuration IBM, ServiceNow, SEPM, Symantec, Opswat
== Upgrading from a version prior to 13.1.0
=== Domain join
Since v13.1, Packetfence moved from Samba to a new NTLM_AUTH_API service.
Expand Down Expand Up @@ -1879,20 +1895,6 @@ For each remaining server in the cluster:
4. Click Save
=== Adding the LDAP search attributes
LDAP conditions added in the LDAP authentication source use a LDAP search to retrieve the values.
=== Switch types conversion
Two switch types will be converted to the new way of defining a switch. Now, a switch could be defined according the OS and not only the model.
=== Some unused or outdated provisionners will be removed
The following provisioners will be removed from Packetfence configuration IBM, ServiceNow, SEPM, Symantec, Opswat
== Upgrading from a version prior to X.Y.Z
== Archived upgrade notes
include::upgrade-notes/archived_upgrade_notes.asciidoc[]
Expand Down

0 comments on commit cd29764

Please sign in to comment.