azure-pipelines-tasks-webdeployment-common 4.255.0 → 4.256.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/7zip/7zip/7z.dll CHANGED
Binary file
package/7zip/7zip/7z.exe CHANGED
Binary file
@@ -3,15 +3,16 @@
3
3
  License for use and distribution
4
4
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5
5
 
6
- 7-Zip Copyright (C) 1999-2023 Igor Pavlov.
6
+ 7-Zip Copyright (C) 1999-2024 Igor Pavlov.
7
7
 
8
8
  The licenses for files are:
9
9
 
10
- 1) 7z.dll:
10
+ - 7z.dll:
11
11
  - The "GNU LGPL" as main license for most of the code
12
12
  - The "GNU LGPL" with "unRAR license restriction" for some code
13
13
  - The "BSD 3-clause License" for some code
14
- 2) All other files: the "GNU LGPL".
14
+ - The "BSD 2-clause License" for some code
15
+ - All other files: the "GNU LGPL".
15
16
 
16
17
  Redistributions in binary form must reproduce related license information from this file.
17
18
 
@@ -20,8 +21,8 @@
20
21
  organization. You don't need to register or pay for 7-Zip.
21
22
 
22
23
 
23
- GNU LGPL information
24
- --------------------
24
+ GNU LGPL information
25
+ --------------------
25
26
 
26
27
  This library is free software; you can redistribute it and/or
27
28
  modify it under the terms of the GNU Lesser General Public
@@ -39,52 +40,107 @@
39
40
 
40
41
 
41
42
 
42
- BSD 3-clause License
43
- --------------------
43
+ BSD 3-clause License in 7-Zip code
44
+ ----------------------------------
44
45
 
45
- The "BSD 3-clause License" is used for the code in 7z.dll that implements LZFSE data decompression.
46
- That code was derived from the code in the "LZFSE compression library" developed by Apple Inc,
47
- that also uses the "BSD 3-clause License":
46
+ The "BSD 3-clause License" is used for the following code in 7z.dll
47
+ 1) LZFSE data decompression.
48
+ That code was derived from the code in the "LZFSE compression library" developed by Apple Inc,
49
+ that also uses the "BSD 3-clause License".
50
+ 2) ZSTD data decompression.
51
+ that code was developed using original zstd decoder code as reference code.
52
+ The original zstd decoder code was developed by Facebook Inc,
53
+ that also uses the "BSD 3-clause License".
48
54
 
49
- ----
50
- Copyright (c) 2015-2016, Apple Inc. All rights reserved.
55
+ Copyright (c) 2015-2016, Apple Inc. All rights reserved.
56
+ Copyright (c) Facebook, Inc. All rights reserved.
57
+ Copyright (c) 2023-2024 Igor Pavlov.
51
58
 
52
- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
59
+ Text of the "BSD 3-clause License"
60
+ ----------------------------------
53
61
 
54
- 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
62
+ Redistribution and use in source and binary forms, with or without modification,
63
+ are permitted provided that the following conditions are met:
55
64
 
56
- 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer
57
- in the documentation and/or other materials provided with the distribution.
65
+ 1. Redistributions of source code must retain the above copyright notice, this
66
+ list of conditions and the following disclaimer.
58
67
 
59
- 3. Neither the name of the copyright holder(s) nor the names of any contributors may be used to endorse or promote products derived
60
- from this software without specific prior written permission.
68
+ 2. Redistributions in binary form must reproduce the above copyright notice,
69
+ this list of conditions and the following disclaimer in the documentation
70
+ and/or other materials provided with the distribution.
61
71
 
62
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
63
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
64
- COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
65
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
66
- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
67
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
68
- ----
72
+ 3. Neither the name of the copyright holder nor the names of its contributors may
73
+ be used to endorse or promote products derived from this software without
74
+ specific prior written permission.
69
75
 
76
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
77
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
78
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
79
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
80
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
81
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
82
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
83
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
84
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
85
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
70
86
 
87
+ ---
71
88
 
72
89
 
73
- unRAR license restriction
74
- -------------------------
75
90
 
76
- The decompression engine for RAR archives was developed using source
77
- code of unRAR program.
78
- All copyrights to original unRAR code are owned by Alexander Roshal.
79
91
 
80
- The license for original unRAR code has the following restriction:
92
+ BSD 2-clause License in 7-Zip code
93
+ ----------------------------------
81
94
 
82
- The unRAR sources cannot be used to re-create the RAR compression algorithm,
83
- which is proprietary. Distribution of modified unRAR sources in separate form
84
- or as a part of other software is permitted, provided that it is clearly
85
- stated in the documentation and source comments that the code may
86
- not be used to develop a RAR (WinRAR) compatible archiver.
95
+ The "BSD 2-clause License" is used for the XXH64 code in 7-Zip.
87
96
 
97
+ XXH64 code in 7-Zip was derived from the original XXH64 code developed by Yann Collet.
88
98
 
89
- --
90
- Igor Pavlov
99
+ Copyright (c) 2012-2021 Yann Collet.
100
+ Copyright (c) 2023-2024 Igor Pavlov.
101
+
102
+ Text of the "BSD 2-clause License"
103
+ ----------------------------------
104
+
105
+ Redistribution and use in source and binary forms, with or without modification,
106
+ are permitted provided that the following conditions are met:
107
+
108
+ 1. Redistributions of source code must retain the above copyright notice, this
109
+ list of conditions and the following disclaimer.
110
+
111
+ 2. Redistributions in binary form must reproduce the above copyright notice,
112
+ this list of conditions and the following disclaimer in the documentation
113
+ and/or other materials provided with the distribution.
114
+
115
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
116
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
117
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
118
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
119
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
120
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
121
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
122
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
123
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
124
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
125
+
126
+ ---
127
+
128
+
129
+
130
+
131
+ unRAR license restriction
132
+ -------------------------
133
+
134
+ The decompression engine for RAR archives was developed using source
135
+ code of unRAR program.
136
+ All copyrights to original unRAR code are owned by Alexander Roshal.
137
+
138
+ The license for original unRAR code has the following restriction:
139
+
140
+ The unRAR sources cannot be used to re-create the RAR compression algorithm,
141
+ which is proprietary. Distribution of modified unRAR sources in separate form
142
+ or as a part of other software is permitted, provided that it is clearly
143
+ stated in the documentation and source comments that the code may
144
+ not be used to develop a RAR (WinRAR) compatible archiver.
145
+
146
+ --
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "azure-pipelines-tasks-webdeployment-common",
3
- "version": "4.255.0",
3
+ "version": "4.256.1",
4
4
  "description": "Common Lib for MSDeploy Utility",
5
5
  "repository": {
6
6
  "type": "git",
7
- "url": "git+ssh://git@github.com/Microsoft/azure-pipelines-tasks.git"
7
+ "url": "git+https://github.com/microsoft/azure-pipelines-tasks-common-packages.git",
8
+ "directory": "common-npm-packages/webdeployment-common"
8
9
  },
9
10
  "scripts": {
10
11
  "build": "pwsh build.ps1",
@@ -13,9 +14,9 @@
13
14
  "author": "Microsoft Corporation",
14
15
  "license": "MIT",
15
16
  "bugs": {
16
- "url": "https://github.com/Microsoft/azure-pipelines-tasks/issues"
17
+ "url": "https://github.com/microsoft/azure-pipelines-tasks-common-packages/issues"
17
18
  },
18
- "homepage": "https://github.com/Microsoft/azure-pipelines-tasks#readme",
19
+ "homepage": "https://github.com/microsoft/azure-pipelines-tasks-common-packages#readme",
19
20
  "dependencies": {
20
21
  "@types/ltx": "3.0.6",
21
22
  "@types/mocha": "^5.2.7",