Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Cyril Drouhin committed Nov 20, 2024
1 parent e8024ab commit 5862616
Show file tree
Hide file tree
Showing 16 changed files with 2,123 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The format is based on and uses the types of changes according to [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased] - 2023-11-12
## [1.0.0] - 2023-11-20

### Changed

Expand All @@ -29,3 +29,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add CONTRIBUTING.md file
- Add release.yml file
- Add scripts folder with first version of SPSUpdate
- Wiki Documentation in repository - Add :
- wiki/Configuration.md
- wiki/Getting-Started.md
- wiki/Home.md
- wiki/Usage.md
- .github/workflows/wiki.yml
8 changes: 7 additions & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPSUpdate - Release Notes

## [Unreleased] - 2024-11-12
## [1.0.0] - 2024-11-20

### Changed

Expand All @@ -26,5 +26,11 @@
- Add CONTRIBUTING.md file
- Add release.yml file
- Add scripts folder with first version of SPSUpdate
- Wiki Documentation in repository - Add :
- wiki/Configuration.md
- wiki/Getting-Started.md
- wiki/Home.md
- wiki/Usage.md
- .github/workflows/wiki.yml

A full list of changes in each version can be found in the [change log](CHANGELOG.md)
19 changes: 19 additions & 0 deletions scripts/Config/CONTOSO-PROD-CONTENT.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"$schema": "http://json-schema.org/schema#",
"contentVersion": "1.0.0.0",
"ConfigurationName": "PROD",
"ApplicationName": "contoso",
"FarmName": "CONTENT",
"Domain": "contoso.com",
"StoredCredential": "PROD-ADM",
"Binaries": {
"SetupFullPath": "\\\\srvfileshared.contoso.com\\cumulativeupdates",
"SetupFileName": ["uber-subscription-kb5002651-fullfile-x64-glb.exe"],
"ShutdownServices": true
},
"UpgradeContentDatabase": true,
"SideBySideToken": {
"Enable": true,
"BuildVersion": "16.0.17928.20238"
}
}
22 changes: 22 additions & 0 deletions scripts/Config/CONTOSO-PROD-SEARCH.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"$schema": "http://json-schema.org/schema#",
"contentVersion": "1.0.0.0",
"ConfigurationName": "PROD",
"ApplicationName": "contoso",
"FarmName": "SEARCH",
"Domain": "contoso.com",
"StoredCredential": "PROD-ADM",
"Binaries": {
"SetupFullPath": "\\\\srvfileshared.contoso.com\\cumulativeupdates",
"SetupFileName": [
"sts2019-kb5002630-fullfile-x64-glb.exe",
"wssloc2019-kb5002597-fullfile-x64-glb.exe"
],
"ShutdownServices": false
},
"UpgradeContentDatabase": false,
"SideBySideToken": {
"Enable": false,
"BuildVersion": ""
}
}
22 changes: 22 additions & 0 deletions scripts/Config/CONTOSO-PROD-SERVICES.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"$schema": "http://json-schema.org/schema#",
"contentVersion": "1.0.0.0",
"ConfigurationName": "PROD",
"ApplicationName": "contoso",
"FarmName": "SERVICES",
"Domain": "contoso.com",
"StoredCredential": "PROD-ADM",
"Binaries": {
"SetupFullPath": "\\\\srvfileshared.contoso.com\\cumulativeupdates",
"SetupFileName": [
"sts-subscription-kb5002191-fullfile-x64-glb.exe",
"wssloc-subscription-kb5002110-fullfile-x64-glb.exe"
],
"ShutdownServices": true
},
"UpgradeContentDatabase": false,
"SideBySideToken": {
"Enable": false,
"BuildVersion": ""
}
}
Binary file not shown.
Loading

0 comments on commit 5862616

Please sign in to comment.