@ -1199,6 +1199,11 @@ function assertDefined(name, value) {
return value ;
}
exports . assertDefined = assertDefined ;
function isGhes ( ) {
const ghUrl = new URL ( process . env [ 'GITHUB_SERVER_URL' ] || 'https://github.com' ) ;
return ghUrl . hostname . toUpperCase ( ) !== 'GITHUB.COM' ;
}
exports . isGhes = isGhes ;
//# sourceMappingURL=cacheUtils.js.map
/***/ } ) ,
@ -1405,36 +1410,7 @@ exports.default = _default;
/* 39 */ ,
/* 40 */ ,
/* 41 */ ,
/* 42 */
/***/ ( function ( _ _unusedmodule , exports , _ _webpack _require _ _ ) {
"use strict" ;
/ *
* Copyright The OpenTelemetry Authors
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* https : //www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing , software
* distributed under the License is distributed on an "AS IS" BASIS ,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied .
* See the License for the specific language governing permissions and
* limitations under the License .
* /
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
exports . createTraceState = void 0 ;
var tracestate _impl _1 = _ _webpack _require _ _ ( 756 ) ;
function createTraceState ( rawTraceState ) {
return new tracestate _impl _1 . TraceStateImpl ( rawTraceState ) ;
}
exports . createTraceState = createTraceState ;
//# sourceMappingURL=utils.js.map
/***/ } ) ,
/* 42 */ ,
/* 43 */ ,
/* 44 */ ,
/* 45 */ ,
@ -3299,18 +3275,18 @@ function downloadCache(archiveLocation, archivePath, options) {
exports . downloadCache = downloadCache ;
// Reserve Cache
function reserveCache ( key , paths , options ) {
var _a , _b ;
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
const httpClient = createHttpClient ( ) ;
const version = getCacheVersion ( paths , options === null || options === void 0 ? void 0 : options . compressionMethod ) ;
const reserveCacheRequest = {
key ,
version
version ,
cacheSize : options === null || options === void 0 ? void 0 : options . cacheSize
} ;
const response = yield requestUtils _1 . retryTypedResponse ( 'reserveCache' , ( ) => _ _awaiter ( this , void 0 , void 0 , function * ( ) {
return httpClient . postJson ( getCacheApiUrl ( 'caches' ) , reserveCacheRequest ) ;
} ) ) ;
return ( _b = ( _a = response === null || response === void 0 ? void 0 : response . result ) === null || _a === void 0 ? void 0 : _a . cacheId ) !== null && _b !== void 0 ? _b : - 1 ;
return response ;
} ) ;
}
exports . reserveCache = reserveCache ;
@ -4467,7 +4443,7 @@ var NoopTracer_1 = __webpack_require__(151);
var NoopTracerProvider = /** @class */ ( function ( ) {
function NoopTracerProvider ( ) {
}
NoopTracerProvider . prototype . getTracer = function ( _name , _version , _options ) {
NoopTracerProvider . prototype . getTracer = function ( _name , _version ) {
return new NoopTracer _1 . NoopTracer ( ) ;
} ;
return NoopTracerProvider ;
@ -36291,9 +36267,9 @@ var ProxyTracerProvider = /** @class */ (function () {
/ * *
* Get a { @ link ProxyTracer }
* /
ProxyTracerProvider . prototype . getTracer = function ( name , version , options ) {
ProxyTracerProvider . prototype . getTracer = function ( name , version ) {
var _a ;
return ( ( _a = this . getDelegateTracer ( name , version , options )) !== null && _a !== void 0 ? _a : new ProxyTracer _1 . ProxyTracer ( this , name , version , options ) ) ;
return ( ( _a = this . getDelegateTracer ( name , version )) !== null && _a !== void 0 ? _a : new ProxyTracer _1 . ProxyTracer ( this , name , version ) ) ;
} ;
ProxyTracerProvider . prototype . getDelegate = function ( ) {
var _a ;
@ -36305,9 +36281,9 @@ var ProxyTracerProvider = /** @class */ (function () {
ProxyTracerProvider . prototype . setDelegate = function ( delegate ) {
this . _delegate = delegate ;
} ;
ProxyTracerProvider . prototype . getDelegateTracer = function ( name , version , options ) {
ProxyTracerProvider . prototype . getDelegateTracer = function ( name , version ) {
var _a ;
return ( _a = this . _delegate ) === null || _a === void 0 ? void 0 : _a . getTracer ( name , version , options );
return ( _a = this . _delegate ) === null || _a === void 0 ? void 0 : _a . getTracer ( name , version );
} ;
return ProxyTracerProvider ;
} ( ) ) ;
@ -36346,11 +36322,10 @@ var NOOP_TRACER = new NoopTracer_1.NoopTracer();
* Proxy tracer provided by the proxy tracer provider
* /
var ProxyTracer = /** @class */ ( function ( ) {
function ProxyTracer ( _provider , name , version , options ) {
function ProxyTracer ( _provider , name , version ) {
this . _provider = _provider ;
this . name = name ;
this . version = version ;
this . options = options ;
}
ProxyTracer . prototype . startSpan = function ( name , options , context ) {
return this . _getTracer ( ) . startSpan ( name , options , context ) ;
@ -36367,7 +36342,7 @@ var ProxyTracer = /** @class */ (function () {
if ( this . _delegate ) {
return this . _delegate ;
}
var tracer = this . _provider . getDelegateTracer ( this . name , this . version , this . options );
var tracer = this . _provider . getDelegateTracer ( this . name , this . version );
if ( ! tracer ) {
return NOOP _TRACER ;
}
@ -37367,13 +37342,12 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
for ( var p in m ) if ( p !== "default" && ! Object . prototype . hasOwnProperty . call ( exports , p ) ) _ _createBinding ( exports , m , p ) ;
} ;
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
exports . diag = exports . propagation = exports . trace = exports . context = exports . INVALID _SPAN _CONTEXT = exports . INVALID _TRACEID = exports . INVALID _SPANID = exports . isValidSpanId = exports . isValidTraceId = exports . isSpanContextValid = exports . createTraceState = exports . baggageEntryMetadataFromString = void 0 ;
exports . diag = exports . propagation = exports . trace = exports . context = exports . INVALID _SPAN _CONTEXT = exports . INVALID _TRACEID = exports . INVALID _SPANID = exports . isValidSpanId = exports . isValidTraceId = exports . isSpanContextValid = exports . baggageEntryMetadataFromString = void 0 ;
_ _exportStar ( _ _webpack _require _ _ ( 880 ) , exports ) ;
var utils _1 = _ _webpack _require _ _ ( 112 ) ;
Object . defineProperty ( exports , "baggageEntryMetadataFromString" , { enumerable : true , get : function ( ) { return utils _1 . baggageEntryMetadataFromString ; } } ) ;
_ _exportStar ( _ _webpack _require _ _ ( 452 ) , exports ) ;
_ _exportStar ( _ _webpack _require _ _ ( 158 ) , exports ) ;
_ _exportStar ( _ _webpack _require _ _ ( 907 ) , exports ) ;
_ _exportStar ( _ _webpack _require _ _ ( 893 ) , exports ) ;
_ _exportStar ( _ _webpack _require _ _ ( 881 ) , exports ) ;
_ _exportStar ( _ _webpack _require _ _ ( 906 ) , exports ) ;
@ -37389,11 +37363,8 @@ __exportStar(__webpack_require__(220), exports);
_ _exportStar ( _ _webpack _require _ _ ( 932 ) , exports ) ;
_ _exportStar ( _ _webpack _require _ _ ( 975 ) , exports ) ;
_ _exportStar ( _ _webpack _require _ _ ( 207 ) , exports ) ;
var utils _2 = _ _webpack _require _ _ ( 42 ) ;
Object . defineProperty ( exports , "createTraceState" , { enumerable : true , get : function ( ) { return utils _2 . createTraceState ; } } ) ;
_ _exportStar ( _ _webpack _require _ _ ( 694 ) , exports ) ;
_ _exportStar ( _ _webpack _require _ _ ( 695 ) , exports ) ;
_ _exportStar ( _ _webpack _require _ _ ( 743 ) , exports ) ;
var spancontext _utils _1 = _ _webpack _require _ _ ( 629 ) ;
Object . defineProperty ( exports , "isSpanContextValid" , { enumerable : true , get : function ( ) { return spancontext _utils _1 . isSpanContextValid ; } } ) ;
Object . defineProperty ( exports , "isValidTraceId" , { enumerable : true , get : function ( ) { return spancontext _utils _1 . isValidTraceId ; } } ) ;
@ -42129,58 +42100,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
/* 587 */ ,
/* 588 */ ,
/* 589 */ ,
/* 590 */
/***/ ( function ( _ _unusedmodule , exports ) {
"use strict" ;
/ *
* Copyright The OpenTelemetry Authors
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* https : //www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing , software
* distributed under the License is distributed on an "AS IS" BASIS ,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied .
* See the License for the specific language governing permissions and
* limitations under the License .
* /
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
exports . validateValue = exports . validateKey = void 0 ;
var VALID _KEY _CHAR _RANGE = '[_0-9a-z-*/]' ;
var VALID _KEY = "[a-z]" + VALID _KEY _CHAR _RANGE + "{0,255}" ;
var VALID _VENDOR _KEY = "[a-z0-9]" + VALID _KEY _CHAR _RANGE + "{0,240}@[a-z]" + VALID _KEY _CHAR _RANGE + "{0,13}" ;
var VALID _KEY _REGEX = new RegExp ( "^(?:" + VALID _KEY + "|" + VALID _VENDOR _KEY + ")$" ) ;
var VALID _VALUE _BASE _REGEX = /^[ -~]{0,255}[!-~]$/ ;
var INVALID _VALUE _COMMA _EQUAL _REGEX = /,|=/ ;
/ * *
* Key is opaque string up to 256 characters printable . It MUST begin with a
* lowercase letter , and can only contain lowercase letters a - z , digits 0 - 9 ,
* underscores _ , dashes - , asterisks * , and forward slashes / .
* For multi - tenant vendor scenarios , an at sign ( @ ) can be used to prefix the
* vendor name . Vendors SHOULD set the tenant ID at the beginning of the key .
* see https : //www.w3.org/TR/trace-context/#key
* /
function validateKey ( key ) {
return VALID _KEY _REGEX . test ( key ) ;
}
exports . validateKey = validateKey ;
/ * *
* Value is opaque string up to 256 characters printable ASCII RFC0020
* characters ( i . e . , the range 0x20 to 0x7E ) except comma , and = .
* /
function validateValue ( value ) {
return ( VALID _VALUE _BASE _REGEX . test ( value ) &&
! INVALID _VALUE _COMMA _EQUAL _REGEX . test ( value ) ) ;
}
exports . validateValue = validateValue ;
//# sourceMappingURL=tracestate-validators.js.map
/***/ } ) ,
/* 590 */ ,
/* 591 */ ,
/* 592 */ ,
/* 593 */ ,
@ -46526,18 +46446,12 @@ exports.restoreCache = restoreCache;
* @ returns number returns cacheId if the cache was saved successfully and throws an error if save fails
* /
function saveCache ( paths , key , options ) {
var _a , _b , _c , _d , _e ;
return _ _awaiter ( this , void 0 , void 0 , function * ( ) {
checkPaths ( paths ) ;
checkKey ( key ) ;
const compressionMethod = yield utils . getCompressionMethod ( ) ;
core . debug ( 'Reserving Cache' ) ;
const cacheId = yield cacheHttpClient . reserveCache ( key , paths , {
compressionMethod
} ) ;
if ( cacheId === - 1 ) {
throw new ReserveCacheError ( ` Unable to reserve cache with key ${ key } , another job may be creating this cache. ` ) ;
}
core . debug ( ` Cache ID: ${ cacheId } ` ) ;
let cacheId = null ;
const cachePaths = yield utils . resolvePaths ( paths ) ;
core . debug ( 'Cache Paths:' ) ;
core . debug ( ` ${ JSON . stringify ( cachePaths ) } ` ) ;
@ -46552,9 +46466,24 @@ function saveCache(paths, key, options) {
const fileSizeLimit = 10 * 1024 * 1024 * 1024 ; // 10GB per repo limit
const archiveFileSize = utils . getArchiveFileSizeInBytes ( archivePath ) ;
core . debug ( ` File Size: ${ archiveFileSize } ` ) ;
if ( archiveFileSize > fileSizeLimit ) {
// For GHES, this check will take place in ReserveCache API with enterprise file size limit
if ( archiveFileSize > fileSizeLimit && ! utils . isGhes ( ) ) {
throw new Error ( ` Cache size of ~ ${ Math . round ( archiveFileSize / ( 1024 * 1024 ) ) } MB ( ${ archiveFileSize } B) is over the 10GB limit, not saving cache. ` ) ;
}
core . debug ( 'Reserving Cache' ) ;
const reserveCacheResponse = yield cacheHttpClient . reserveCache ( key , paths , {
compressionMethod ,
cacheSize : archiveFileSize
} ) ;
if ( ( _a = reserveCacheResponse === null || reserveCacheResponse === void 0 ? void 0 : reserveCacheResponse . result ) === null || _a === void 0 ? void 0 : _a . cacheId ) {
cacheId = ( _b = reserveCacheResponse === null || reserveCacheResponse === void 0 ? void 0 : reserveCacheResponse . result ) === null || _b === void 0 ? void 0 : _b . cacheId ;
}
else if ( ( reserveCacheResponse === null || reserveCacheResponse === void 0 ? void 0 : reserveCacheResponse . statusCode ) === 400 ) {
throw new ReserveCacheError ( ( _d = ( _c = reserveCacheResponse === null || reserveCacheResponse === void 0 ? void 0 : reserveCacheResponse . error ) === null || _c === void 0 ? void 0 : _c . message ) !== null && _d !== void 0 ? _d : ` Cache size of ~ ${ Math . round ( archiveFileSize / ( 1024 * 1024 ) ) } MB ( ${ archiveFileSize } B) is over the data cap limit, not saving cache. ` ) ;
}
else {
throw new ReserveCacheError ( ` Unable to reserve cache with key ${ key } , another job may be creating this cache. More details: ${ ( _e = reserveCacheResponse === null || reserveCacheResponse === void 0 ? void 0 : reserveCacheResponse . error ) === null || _e === void 0 ? void 0 : _e . message } ` ) ;
}
core . debug ( ` Saving Cache (ID: ${ cacheId } ) ` ) ;
yield cacheHttpClient . saveCache ( cacheId , archivePath , options ) ;
}
@ -47241,30 +47170,7 @@ exports.OidcClient = OidcClient;
//# sourceMappingURL=oidc-utils.js.map
/***/ } ) ,
/* 743 */
/***/ ( function ( _ _unusedmodule , exports ) {
"use strict" ;
/ *
* Copyright The OpenTelemetry Authors
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* https : //www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing , software
* distributed under the License is distributed on an "AS IS" BASIS ,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied .
* See the License for the specific language governing permissions and
* limitations under the License .
* /
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
//# sourceMappingURL=tracer_options.js.map
/***/ } ) ,
/* 743 */ ,
/* 744 */ ,
/* 745 */ ,
/* 746 */ ,
@ -47361,117 +47267,7 @@ function async(callback)
/* 753 */ ,
/* 754 */ ,
/* 755 */ ,
/* 756 */
/***/ ( function ( _ _unusedmodule , exports , _ _webpack _require _ _ ) {
"use strict" ;
/ *
* Copyright The OpenTelemetry Authors
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* https : //www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing , software
* distributed under the License is distributed on an "AS IS" BASIS ,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied .
* See the License for the specific language governing permissions and
* limitations under the License .
* /
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
exports . TraceStateImpl = void 0 ;
var tracestate _validators _1 = _ _webpack _require _ _ ( 590 ) ;
var MAX _TRACE _STATE _ITEMS = 32 ;
var MAX _TRACE _STATE _LEN = 512 ;
var LIST _MEMBERS _SEPARATOR = ',' ;
var LIST _MEMBER _KEY _VALUE _SPLITTER = '=' ;
/ * *
* TraceState must be a class and not a simple object type because of the spec
* requirement ( https : //www.w3.org/TR/trace-context/#tracestate-field).
*
* Here is the list of allowed mutations :
* - New key - value pair should be added into the beginning of the list
* - The value of any key can be updated . Modified keys MUST be moved to the
* beginning of the list .
* /
var TraceStateImpl = /** @class */ ( function ( ) {
function TraceStateImpl ( rawTraceState ) {
this . _internalState = new Map ( ) ;
if ( rawTraceState )
this . _parse ( rawTraceState ) ;
}
TraceStateImpl . prototype . set = function ( key , value ) {
// TODO: Benchmark the different approaches(map vs list) and
// use the faster one.
var traceState = this . _clone ( ) ;
if ( traceState . _internalState . has ( key ) ) {
traceState . _internalState . delete ( key ) ;
}
traceState . _internalState . set ( key , value ) ;
return traceState ;
} ;
TraceStateImpl . prototype . unset = function ( key ) {
var traceState = this . _clone ( ) ;
traceState . _internalState . delete ( key ) ;
return traceState ;
} ;
TraceStateImpl . prototype . get = function ( key ) {
return this . _internalState . get ( key ) ;
} ;
TraceStateImpl . prototype . serialize = function ( ) {
var _this = this ;
return this . _keys ( )
. reduce ( function ( agg , key ) {
agg . push ( key + LIST _MEMBER _KEY _VALUE _SPLITTER + _this . get ( key ) ) ;
return agg ;
} , [ ] )
. join ( LIST _MEMBERS _SEPARATOR ) ;
} ;
TraceStateImpl . prototype . _parse = function ( rawTraceState ) {
if ( rawTraceState . length > MAX _TRACE _STATE _LEN )
return ;
this . _internalState = rawTraceState
. split ( LIST _MEMBERS _SEPARATOR )
. reverse ( ) // Store in reverse so new keys (.set(...)) will be placed at the beginning
. reduce ( function ( agg , part ) {
var listMember = part . trim ( ) ; // Optional Whitespace (OWS) handling
var i = listMember . indexOf ( LIST _MEMBER _KEY _VALUE _SPLITTER ) ;
if ( i !== - 1 ) {
var key = listMember . slice ( 0 , i ) ;
var value = listMember . slice ( i + 1 , part . length ) ;
if ( tracestate _validators _1 . validateKey ( key ) && tracestate _validators _1 . validateValue ( value ) ) {
agg . set ( key , value ) ;
}
else {
// TODO: Consider to add warning log
}
}
return agg ;
} , new Map ( ) ) ;
// Because of the reverse() requirement, trunc must be done after map is created
if ( this . _internalState . size > MAX _TRACE _STATE _ITEMS ) {
this . _internalState = new Map ( Array . from ( this . _internalState . entries ( ) )
. reverse ( ) // Use reverse same as original tracestate parse chain
. slice ( 0 , MAX _TRACE _STATE _ITEMS ) ) ;
}
} ;
TraceStateImpl . prototype . _keys = function ( ) {
return Array . from ( this . _internalState . keys ( ) ) . reverse ( ) ;
} ;
TraceStateImpl . prototype . _clone = function ( ) {
var traceState = new TraceStateImpl ( ) ;
traceState . _internalState = new Map ( this . _internalState ) ;
return traceState ;
} ;
return TraceStateImpl ;
} ( ) ) ;
exports . TraceStateImpl = TraceStateImpl ;
//# sourceMappingURL=tracestate-impl.js.map
/***/ } ) ,
/* 756 */ ,
/* 757 */ ,
/* 758 */ ,
/* 759 */ ,
@ -49654,7 +49450,7 @@ module.exports = v4;
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
exports . VERSION = void 0 ;
// this is autogenerated file, see scripts/version-update.js
exports . VERSION = '1. 1. 0';
exports . VERSION = '1. 0.4 ';
//# sourceMappingURL=version.js.map
/***/ } ) ,
@ -51786,7 +51582,8 @@ function retryTypedResponse(name, method, maxAttempts = constants_1.DefaultRetry
return {
statusCode : error . statusCode ,
result : null ,
headers : { }
headers : { } ,
error
} ;
}
else {
@ -51877,30 +51674,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=attributes.js.map
/***/ } ) ,
/* 907 */
/***/ ( function ( _ _unusedmodule , exports ) {
"use strict" ;
/ *
* Copyright The OpenTelemetry Authors
*
* Licensed under the Apache License , Version 2.0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* https : //www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing , software
* distributed under the License is distributed on an "AS IS" BASIS ,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied .
* See the License for the specific language governing permissions and
* limitations under the License .
* /
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
//# sourceMappingURL=Attributes.js.map
/***/ } ) ,
/* 907 */ ,
/* 908 */ ,
/* 909 */ ,
/* 910 */