From 11aa3baf2e54da405b73f0d0cf801277f3d65263 Mon Sep 17 00:00:00 2001 From: Michael Kriese Date: Thu, 9 Sep 2021 16:17:05 +0200 Subject: [PATCH] test: use codeql compatible token / passwords (#11297) --- .github/codeql/codeql-config.yml | 2 + .github/workflows/codeql-analysis.yml | 2 + lib/config/__snapshots__/secrets.spec.ts.snap | 6 +- lib/config/migration.spec.ts | 12 +- lib/config/secrets.spec.ts | 8 +- lib/datasource/clojure/index.spec.ts | 2 +- lib/datasource/docker/index.spec.ts | 10 +- .../hex/__snapshots__/index.spec.ts.snap | 4 +- lib/datasource/hex/index.spec.ts | 8 +- .../maven/__snapshots__/index.spec.ts.snap | 18 +- lib/datasource/maven/index.spec.ts | 2 +- .../npm/__snapshots__/get.spec.ts.snap | 2 +- .../npm/__snapshots__/index.spec.ts.snap | 4 +- lib/datasource/npm/get.spec.ts | 4 +- lib/datasource/npm/index.spec.ts | 8 +- lib/datasource/pypi/index.spec.ts | 4 +- .../__snapshots__/err-serializer.spec.ts.snap | 2 +- lib/logger/__snapshots__/index.spec.ts.snap | 8 +- lib/logger/err-serializer.spec.ts | 2 +- lib/logger/index.spec.ts | 4 +- lib/manager/git-submodules/extract.spec.ts | 2 +- .../mix/__snapshots__/artifacts.spec.ts.snap | 2 +- lib/manager/mix/artifacts.spec.ts | 4 +- lib/manager/npm/post-update/rules.spec.ts | 2 +- .../azure-got-wrapper.spec.ts.snap | 18 +- .../azure/__snapshots__/util.spec.ts.snap | 2 +- lib/platform/azure/azure-got-wrapper.spec.ts | 4 +- lib/platform/azure/util.spec.ts | 2 +- .../github/__snapshots__/index.spec.ts.snap | 468 +++++++++--------- lib/platform/github/index.spec.ts | 18 +- .../gitlab/__snapshots__/index.spec.ts.snap | 344 ++++++------- lib/platform/gitlab/index.spec.ts | 2 +- lib/util/http/auth.spec.ts | 27 +- lib/util/http/github.spec.ts | 6 +- lib/util/http/gitlab.spec.ts | 5 + lib/util/merge-confidence/index.spec.ts | 6 +- lib/util/sanitize.spec.ts | 2 +- lib/util/template/index.spec.ts | 4 +- lib/workers/branch/commit.spec.ts | 2 +- lib/workers/branch/index.spec.ts | 8 +- lib/workers/global/autodiscover.spec.ts | 2 +- lib/workers/global/config/parse/cli.ts | 2 +- lib/workers/global/config/parse/index.spec.ts | 4 +- .../onboarding/branch/index.spec.ts | 2 +- .../repository/process/extract-update.spec.ts | 10 +- 45 files changed, 533 insertions(+), 527 deletions(-) create mode 100644 .github/codeql/codeql-config.yml diff --git a/.github/codeql/codeql-config.yml b/.github/codeql/codeql-config.yml new file mode 100644 index 00000000000000..cedb3eb6d504d0 --- /dev/null +++ b/.github/codeql/codeql-config.yml @@ -0,0 +1,2 @@ +paths-ignore: + - /__fixtures__/** diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 9399e301422dc7..37cd81399bd59a 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -23,6 +23,8 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@4854dd23d5f2aada3f026670784d5109e7702ea9 # renovate: tag=v1.0.14 + with: + config-file: ./.github/codeql/codeql-config.yml # Override language selection by uncommenting this and choosing your languages # with: diff --git a/lib/config/__snapshots__/secrets.spec.ts.snap b/lib/config/__snapshots__/secrets.spec.ts.snap index 39a49c77ad7ea2..14cd2abd4cb19e 100644 --- a/lib/config/__snapshots__/secrets.spec.ts.snap +++ b/lib/config/__snapshots__/secrets.spec.ts.snap @@ -5,7 +5,7 @@ Object { "hostRules": Array [ Object { "hostType": "npm", - "token": "abc123==", + "token": "123test==", }, ], } @@ -22,13 +22,13 @@ Object { exports[`config/secrets applySecretsToConfig(config) replaces secrets in a subobject 1`] = ` Object { "npm": Object { - "npmToken": "abc123==", + "npmToken": "123test==", }, } `; exports[`config/secrets applySecretsToConfig(config) replaces secrets in the top level 1`] = ` Object { - "npmToken": "abc123==", + "npmToken": "123test==", } `; diff --git a/lib/config/migration.spec.ts b/lib/config/migration.spec.ts index 1fec9128db06db..5073963864aa03 100644 --- a/lib/config/migration.spec.ts +++ b/lib/config/migration.spec.ts @@ -687,9 +687,9 @@ describe('config/migration', () => { it('it migrates hostRules fields', () => { const config: RenovateConfig = { hostRules: [ - { baseUrl: 'https://some.domain.com', token: 'abc123' }, - { domainName: 'domain.com', token: 'abc123' }, - { hostName: 'some.domain.com', token: 'abc123' }, + { baseUrl: 'https://some.domain.com', token: '123test' }, + { domainName: 'domain.com', token: '123test' }, + { hostName: 'some.domain.com', token: '123test' }, ], } as any; const { isMigrated, migratedConfig } = configMigration.migrateConfig( @@ -699,9 +699,9 @@ describe('config/migration', () => { expect(isMigrated).toBe(true); expect(migratedConfig).toEqual({ hostRules: [ - { matchHost: 'https://some.domain.com', token: 'abc123' }, - { matchHost: 'domain.com', token: 'abc123' }, - { matchHost: 'some.domain.com', token: 'abc123' }, + { matchHost: 'https://some.domain.com', token: '123test' }, + { matchHost: 'domain.com', token: '123test' }, + { matchHost: 'some.domain.com', token: '123test' }, ], }); }); diff --git a/lib/config/secrets.spec.ts b/lib/config/secrets.spec.ts index 20727e6eed3fcd..c8f32025b34125 100644 --- a/lib/config/secrets.spec.ts +++ b/lib/config/secrets.spec.ts @@ -48,7 +48,7 @@ describe('config/secrets', () => { const config = { prTitle: '{{ secrets.ARTIFACTORY_TOKEN }}', secrets: { - ARTIFACTORY_TOKEN: 'abc123==', + ARTIFACTORY_TOKEN: '123test==', }, }; expect(() => applySecretsToConfig(config)).toThrow(CONFIG_VALIDATION); @@ -61,7 +61,7 @@ describe('config/secrets', () => { }); it('replaces secrets in the top level', () => { const config = { - secrets: { ARTIFACTORY_TOKEN: 'abc123==' }, + secrets: { ARTIFACTORY_TOKEN: '123test==' }, npmToken: '{{ secrets.ARTIFACTORY_TOKEN }}', }; const res = applySecretsToConfig(config); @@ -70,7 +70,7 @@ describe('config/secrets', () => { }); it('replaces secrets in a subobject', () => { const config = { - secrets: { ARTIFACTORY_TOKEN: 'abc123==' }, + secrets: { ARTIFACTORY_TOKEN: '123test==' }, npm: { npmToken: '{{ secrets.ARTIFACTORY_TOKEN }}' }, }; const res = applySecretsToConfig(config); @@ -79,7 +79,7 @@ describe('config/secrets', () => { }); it('replaces secrets in a array of objects', () => { const config = { - secrets: { ARTIFACTORY_TOKEN: 'abc123==' }, + secrets: { ARTIFACTORY_TOKEN: '123test==' }, hostRules: [ { hostType: 'npm', token: '{{ secrets.ARTIFACTORY_TOKEN }}' }, ], diff --git a/lib/datasource/clojure/index.spec.ts b/lib/datasource/clojure/index.spec.ts index dd93c0c82abe63..15196c461c4c6e 100644 --- a/lib/datasource/clojure/index.spec.ts +++ b/lib/datasource/clojure/index.spec.ts @@ -83,7 +83,7 @@ describe('datasource/clojure/index', () => { hostRules.add({ hostType: ClojureDatasource.id, matchHost: 'custom.registry.renovatebot.com', - token: 'abc123', + token: '123test', }); jest.resetAllMocks(); }); diff --git a/lib/datasource/docker/index.spec.ts b/lib/datasource/docker/index.spec.ts index 33cd9df8d4e1a3..5db28b35826b75 100644 --- a/lib/datasource/docker/index.spec.ts +++ b/lib/datasource/docker/index.spec.ts @@ -243,7 +243,7 @@ describe('datasource/docker/index', () => { .reply(200, '', { 'docker-content-digest': 'some-digest' }); mockEcrAuthResolve({ - authorizationData: [{ authorizationToken: 'abcdef' }], + authorizationData: [{ authorizationToken: 'test_token' }], }); await getDigest( @@ -276,7 +276,7 @@ describe('datasource/docker/index', () => { .reply(200, '', { 'docker-content-digest': 'some-digest' }); mockEcrAuthResolve({ - authorizationData: [{ authorizationToken: 'abc' }], + authorizationData: [{ authorizationToken: 'test' }], }); const res = await getDigest( @@ -353,7 +353,7 @@ describe('datasource/docker/index', () => { .get( '/token?service=registry.docker.io&scope=repository:library/some-other-dep:pull' ) - .reply(200, { access_token: 'some-token' }); + .reply(200, { access_token: 'test' }); const res = await getDigest( { datasource: 'docker', depName: 'some-other-dep' }, '8.0.0-alpine' @@ -528,7 +528,7 @@ describe('datasource/docker/index', () => { .get( '/token?service=registry.docker.io&scope=repository:library/node:pull' ) - .reply(200, { token: 'some-token ' }); + .reply(200, { token: 'test' }); const res = await getPkgReleases({ datasource: id, depName: 'node', @@ -556,7 +556,7 @@ describe('datasource/docker/index', () => { .get( '/token?service=registry.docker.io&scope=repository:library/node:pull' ) - .reply(200, { token: 'some-token ' }); + .reply(200, { token: 'test' }); const res = await getPkgReleases({ datasource: id, depName: 'docker.io/node', diff --git a/lib/datasource/hex/__snapshots__/index.spec.ts.snap b/lib/datasource/hex/__snapshots__/index.spec.ts.snap index 6e1d2d92d1972b..d000f197e03eae 100644 --- a/lib/datasource/hex/__snapshots__/index.spec.ts.snap +++ b/lib/datasource/hex/__snapshots__/index.spec.ts.snap @@ -127,7 +127,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "valid_token", + "authorization": "abc", "host": "hex.pm", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -322,7 +322,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "this_simple_token", + "authorization": "abc", "host": "hex.pm", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, diff --git a/lib/datasource/hex/index.spec.ts b/lib/datasource/hex/index.spec.ts index bbc8a30f9b8f2f..bd4ba4fa69a783 100644 --- a/lib/datasource/hex/index.spec.ts +++ b/lib/datasource/hex/index.spec.ts @@ -89,7 +89,7 @@ describe('datasource/hex/index', () => { httpMock .scope(baseUrl, { reqheaders: { - authorization: 'this_simple_token', + authorization: 'abc', }, }) .get('/packages/certifi') @@ -97,7 +97,7 @@ describe('datasource/hex/index', () => { hostRules.find.mockReturnValueOnce({ authType: 'Token-Only', - token: 'this_simple_token', + token: 'abc', }); const res = await getPkgReleases({ @@ -143,7 +143,7 @@ describe('datasource/hex/index', () => { httpMock .scope(baseUrl, { reqheaders: { - authorization: 'valid_token', + authorization: 'abc', }, }) .get('/repos/renovate_test/packages/private_package') @@ -151,7 +151,7 @@ describe('datasource/hex/index', () => { hostRules.find.mockReturnValueOnce({ authType: 'Token-Only', - token: 'valid_token', + token: 'abc', }); const result = await getPkgReleases({ diff --git a/lib/datasource/maven/__snapshots__/index.spec.ts.snap b/lib/datasource/maven/__snapshots__/index.spec.ts.snap index 0ba1e11711e5d9..e3fda6990f1a09 100644 --- a/lib/datasource/maven/__snapshots__/index.spec.ts.snap +++ b/lib/datasource/maven/__snapshots__/index.spec.ts.snap @@ -59,7 +59,7 @@ Array [ Object { "headers": Object { "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "custom.registry.renovatebot.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -69,7 +69,7 @@ Array [ Object { "headers": Object { "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "custom.registry.renovatebot.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -79,7 +79,7 @@ Array [ Object { "headers": Object { "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "custom.registry.renovatebot.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -934,7 +934,7 @@ Array [ Object { "headers": Object { "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "custom.registry.renovatebot.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -944,7 +944,7 @@ Array [ Object { "headers": Object { "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "custom.registry.renovatebot.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -954,7 +954,7 @@ Array [ Object { "headers": Object { "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "custom.registry.renovatebot.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -964,7 +964,7 @@ Array [ Object { "headers": Object { "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "custom.registry.renovatebot.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -974,7 +974,7 @@ Array [ Object { "headers": Object { "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "custom.registry.renovatebot.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -984,7 +984,7 @@ Array [ Object { "headers": Object { "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "custom.registry.renovatebot.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, diff --git a/lib/datasource/maven/index.spec.ts b/lib/datasource/maven/index.spec.ts index a0f01050ddcaf3..6a73422dc90220 100644 --- a/lib/datasource/maven/index.spec.ts +++ b/lib/datasource/maven/index.spec.ts @@ -79,7 +79,7 @@ describe('datasource/maven/index', () => { hostRules.add({ hostType: datasource, matchHost: 'custom.registry.renovatebot.com', - token: 'abc123', + token: '123test', }); jest.resetAllMocks(); }); diff --git a/lib/datasource/npm/__snapshots__/get.spec.ts.snap b/lib/datasource/npm/__snapshots__/get.spec.ts.snap index 45e16c31ccd9ca..82907136666551 100644 --- a/lib/datasource/npm/__snapshots__/get.spec.ts.snap +++ b/lib/datasource/npm/__snapshots__/get.spec.ts.snap @@ -475,7 +475,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Basic XXX", + "authorization": "Basic abc", "host": "registry.npmjs.org", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, diff --git a/lib/datasource/npm/__snapshots__/index.spec.ts.snap b/lib/datasource/npm/__snapshots__/index.spec.ts.snap index 8ec2aebd019399..4aac8cf03d2daf 100644 --- a/lib/datasource/npm/__snapshots__/index.spec.ts.snap +++ b/lib/datasource/npm/__snapshots__/index.spec.ts.snap @@ -586,7 +586,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abcde", + "authorization": "Bearer abc", "host": "npm.mycustomregistry.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -625,7 +625,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abcde", + "authorization": "Bearer abc", "host": "npm.mycustomregistry.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, diff --git a/lib/datasource/npm/get.spec.ts b/lib/datasource/npm/get.spec.ts index e8d0e3b9e7b27d..9486d34075eb5c 100644 --- a/lib/datasource/npm/get.spec.ts +++ b/lib/datasource/npm/get.spec.ts @@ -152,14 +152,14 @@ describe('datasource/npm/get', () => { const npmrc = ``; hostRules.add({ matchHost: 'https://registry.npmjs.org', - token: 'XXX', + token: 'abc', authType: 'Basic', }); httpMock .scope('https://registry.npmjs.org', { reqheaders: { - authorization: 'Basic XXX', + authorization: 'Basic abc', }, }) .get('/renovate') diff --git a/lib/datasource/npm/index.spec.ts b/lib/datasource/npm/index.spec.ts index ae42c4af4c71db..18bab6a112cf4c 100644 --- a/lib/datasource/npm/index.spec.ts +++ b/lib/datasource/npm/index.spec.ts @@ -270,11 +270,11 @@ describe('datasource/npm/index', () => { hostRules.add({ hostType: 'npm', matchHost: 'npm.mycustomregistry.com', - token: 'abcde', + token: 'abc', }); httpMock .scope('https://npm.mycustomregistry.com', { - reqheaders: { authorization: 'Bearer abcde' }, + reqheaders: { authorization: 'Bearer abc' }, }) .get('/foobar') .reply(200, npmResponse); @@ -289,13 +289,13 @@ describe('datasource/npm/index', () => { hostType: 'npm', matchHost: 'https://npm.mycustomregistry.com/_packaging/mycustomregistry/npm/registry/', - token: 'abcde', + token: 'abc', }); httpMock .scope( 'https://npm.mycustomregistry.com/_packaging/mycustomregistry/npm/registry', { - reqheaders: { authorization: 'Bearer abcde' }, + reqheaders: { authorization: 'Bearer abc' }, } ) .get('/foobar') diff --git a/lib/datasource/pypi/index.spec.ts b/lib/datasource/pypi/index.spec.ts index 26dd29f56699c5..2171f67a900907 100644 --- a/lib/datasource/pypi/index.spec.ts +++ b/lib/datasource/pypi/index.spec.ts @@ -81,7 +81,7 @@ describe('datasource/pypi/index', () => { }); it('sets private if authorization privided', async () => { - hostRules.add({ matchHost: 'customprivate.pypi.net', token: 'abc123' }); + hostRules.add({ matchHost: 'customprivate.pypi.net', token: '123test' }); httpMock .scope('https://customprivate.pypi.net/foo') .get('/azure-cli-monitor/json') @@ -258,7 +258,7 @@ describe('datasource/pypi/index', () => { it('sets private simple if authorization provided', async () => { hostRules.add({ matchHost: 'some.private.registry.org', - token: 'abc123', + token: '123test', }); httpMock .scope('https://some.private.registry.org/+simple/') diff --git a/lib/logger/__snapshots__/err-serializer.spec.ts.snap b/lib/logger/__snapshots__/err-serializer.spec.ts.snap index 6b2de4afa35c95..28a773719a6d8d 100644 --- a/lib/logger/__snapshots__/err-serializer.spec.ts.snap +++ b/lib/logger/__snapshots__/err-serializer.spec.ts.snap @@ -7,7 +7,7 @@ Object { "message": "some message", "options": Object { "headers": Object { - "authorization": "Bearer abc", + "authorization": "Bearer testtoken", }, }, "response": Object { diff --git a/lib/logger/__snapshots__/index.spec.ts.snap b/lib/logger/__snapshots__/index.spec.ts.snap index ffbe479d6dfc58..aa2bb81aac546a 100644 --- a/lib/logger/__snapshots__/index.spec.ts.snap +++ b/lib/logger/__snapshots__/index.spec.ts.snap @@ -5,14 +5,14 @@ Array [ Object { "any": "test", "level": 50, - "logContext": "abc123", + "logContext": "123test", "msg": "some meta", "name": "renovate", }, Object { "any": "test", "level": 50, - "logContext": "abc123", + "logContext": "123test", "msg": "", "name": "renovate", "password": "***********", @@ -21,7 +21,7 @@ Array [ Object { "any": "test", "level": 50, - "logContext": "abc123", + "logContext": "123test", "msg": "message", "name": "renovate", "some": "meta", @@ -29,7 +29,7 @@ Array [ Object { "any": "test", "level": 40, - "logContext": "abc123", + "logContext": "123test", "msg": "a warning with a **redacted**", "name": "renovate", }, diff --git a/lib/logger/err-serializer.spec.ts b/lib/logger/err-serializer.spec.ts index 61ef795e290064..870deadc2a1c7e 100644 --- a/lib/logger/err-serializer.spec.ts +++ b/lib/logger/err-serializer.spec.ts @@ -17,7 +17,7 @@ describe('logger/err-serializer', () => { }, options: { headers: { - authorization: 'Bearer abc', + authorization: 'Bearer testtoken', }, }, }); diff --git a/lib/logger/index.spec.ts b/lib/logger/index.spec.ts index abae2299f06fa6..29d7b931adf803 100644 --- a/lib/logger/index.spec.ts +++ b/lib/logger/index.spec.ts @@ -24,8 +24,8 @@ describe('logger/index', () => { expect(logger).toBeDefined(); }); it('sets and gets context', () => { - setContext('abc123'); - expect(getContext()).toEqual('abc123'); + setContext('123test'); + expect(getContext()).toEqual('123test'); }); it('supports logging with metadata', () => { expect(() => logger.debug({ some: 'meta' }, 'some meta')).not.toThrow(); diff --git a/lib/manager/git-submodules/extract.spec.ts b/lib/manager/git-submodules/extract.spec.ts index e73c16930640e1..12de81b03ce9e7 100644 --- a/lib/manager/git-submodules/extract.spec.ts +++ b/lib/manager/git-submodules/extract.spec.ts @@ -45,7 +45,7 @@ describe('manager/git-submodules/extract', () => { describe('extractPackageFile()', () => { it('extracts submodules', async () => { setGlobalConfig({ localDir: `${__dirname}/__fixtures__` }); - hostRules.add({ matchHost: 'github.com', token: 'abc123' }); + hostRules.add({ matchHost: 'github.com', token: '123test' }); let res: PackageFile; expect(await extractPackageFile('', '.gitmodules.1', {})).toBeNull(); res = await extractPackageFile('', '.gitmodules.2', {}); diff --git a/lib/manager/mix/__snapshots__/artifacts.spec.ts.snap b/lib/manager/mix/__snapshots__/artifacts.spec.ts.snap index c2ab6ca91a12ff..efffd623a01aa1 100644 --- a/lib/manager/mix/__snapshots__/artifacts.spec.ts.snap +++ b/lib/manager/mix/__snapshots__/artifacts.spec.ts.snap @@ -20,7 +20,7 @@ Array [ }, }, Object { - "cmd": "docker run --rm --name=renovate_elixir --label=renovate_child -v \\"/tmp/github/some/repo\\":\\"/tmp/github/some/repo\\" -w \\"/tmp/github/some/repo\\" renovate/elixir bash -l -c \\"mix hex.organization auth renovate_test --key valid_token && mix deps.update private_package other_package\\"", + "cmd": "docker run --rm --name=renovate_elixir --label=renovate_child -v \\"/tmp/github/some/repo\\":\\"/tmp/github/some/repo\\" -w \\"/tmp/github/some/repo\\" renovate/elixir bash -l -c \\"mix hex.organization auth renovate_test --key valid_test_token && mix deps.update private_package other_package\\"", "options": Object { "cwd": "/tmp/github/some/repo", "encoding": "utf-8", diff --git a/lib/manager/mix/artifacts.spec.ts b/lib/manager/mix/artifacts.spec.ts index fb9d0eb019b2d2..53def45b8091d2 100644 --- a/lib/manager/mix/artifacts.spec.ts +++ b/lib/manager/mix/artifacts.spec.ts @@ -105,7 +105,7 @@ describe('manager/mix/artifacts', () => { fs.getSiblingFileName.mockReturnValueOnce('mix.lock'); const execSnapshots = mockExecAll(exec); fs.readLocalFile.mockResolvedValueOnce('New mix.lock'); - hostRules.find.mockReturnValueOnce({ token: 'valid_token' }); + hostRules.find.mockReturnValueOnce({ token: 'valid_test_token' }); hostRules.find.mockReturnValueOnce({}); const result = await updateArtifacts({ @@ -134,7 +134,7 @@ describe('manager/mix/artifacts', () => { const [, packageUpdateCommand] = execSnapshots; expect(packageUpdateCommand.cmd).toInclude( - 'mix hex.organization auth renovate_test --key valid_token && ' + + 'mix hex.organization auth renovate_test --key valid_test_token && ' + 'mix deps.update private_package other_package' ); }); diff --git a/lib/manager/npm/post-update/rules.spec.ts b/lib/manager/npm/post-update/rules.spec.ts index 9406b335d7ef90..87ca5eefde3f3f 100644 --- a/lib/manager/npm/post-update/rules.spec.ts +++ b/lib/manager/npm/post-update/rules.spec.ts @@ -12,7 +12,7 @@ describe('manager/npm/post-update/rules', () => { expect(res.additionalYarnRcYml).toBeUndefined(); }); it('returns empty if no resolvedHost', () => { - hostRules.add({ hostType: 'npm', token: 'abc123' }); + hostRules.add({ hostType: 'npm', token: '123test' }); const res = processHostRules(); expect(res.additionalNpmrcContent).toHaveLength(0); expect(res.additionalYarnRcYml).toBeUndefined(); diff --git a/lib/platform/azure/__snapshots__/azure-got-wrapper.spec.ts.snap b/lib/platform/azure/__snapshots__/azure-got-wrapper.spec.ts.snap index e7a94900182680..67719e83bacd06 100644 --- a/lib/platform/azure/__snapshots__/azure-got-wrapper.spec.ts.snap +++ b/lib/platform/azure/__snapshots__/azure-got-wrapper.spec.ts.snap @@ -4,7 +4,7 @@ exports[`platform/azure/azure-got-wrapper gitApi should set bearer token and end WebApi { "authHandler": BearerCredentialHandler { "allowCrossOriginAuthentication": true, - "token": "token", + "token": "testtoken", }, "isNoProxyHost": [Function], "options": Object { @@ -26,7 +26,7 @@ WebApi { "handlers": Array [ BearerCredentialHandler { "allowCrossOriginAuthentication": true, - "token": "token", + "token": "testtoken", }, ], "requestOptions": Object { @@ -56,7 +56,7 @@ WebApi { "handlers": Array [ BearerCredentialHandler { "allowCrossOriginAuthentication": true, - "token": "token", + "token": "testtoken", }, ], "requestOptions": Object { @@ -141,9 +141,9 @@ WebApi { exports[`platform/azure/azure-got-wrapper gitApi should set personal access token and endpoint 1`] = ` WebApi { - "authHandler": PersonalAccessTokenCredentialHandler { + "authHandler": BearerCredentialHandler { "allowCrossOriginAuthentication": true, - "token": "1234567890123456789012345678901234567890123456789012", + "token": "123test", }, "isNoProxyHost": [Function], "options": Object { @@ -163,9 +163,9 @@ WebApi { "_maxRetries": 1, "_socketTimeout": undefined, "handlers": Array [ - PersonalAccessTokenCredentialHandler { + BearerCredentialHandler { "allowCrossOriginAuthentication": true, - "token": "1234567890123456789012345678901234567890123456789012", + "token": "123test", }, ], "requestOptions": Object { @@ -193,9 +193,9 @@ WebApi { "_maxRetries": 1, "_socketTimeout": undefined, "handlers": Array [ - PersonalAccessTokenCredentialHandler { + BearerCredentialHandler { "allowCrossOriginAuthentication": true, - "token": "1234567890123456789012345678901234567890123456789012", + "token": "123test", }, ], "requestOptions": Object { diff --git a/lib/platform/azure/__snapshots__/util.spec.ts.snap b/lib/platform/azure/__snapshots__/util.spec.ts.snap index 0e46c627281471..53d676b17e3b42 100644 --- a/lib/platform/azure/__snapshots__/util.spec.ts.snap +++ b/lib/platform/azure/__snapshots__/util.spec.ts.snap @@ -85,7 +85,7 @@ Object { exports[`platform/azure/util getStorageExtraCloneOpts should configure personal access token 1`] = ` Object { - "-c": "http.extraheader=AUTHORIZATION: basic OjEyMzQ1Njc4OTAxMjM0NTY3ODkwMTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTI=", + "-c": "http.extraheader=AUTHORIZATION: basic OjEyMzQ1Njc4OTAxMjM0NTY3ODkwMTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3OHRlc3Q=", } `; diff --git a/lib/platform/azure/azure-got-wrapper.spec.ts b/lib/platform/azure/azure-got-wrapper.spec.ts index 6ac00d978aefca..1907cb3285faf9 100644 --- a/lib/platform/azure/azure-got-wrapper.spec.ts +++ b/lib/platform/azure/azure-got-wrapper.spec.ts @@ -20,7 +20,7 @@ describe('platform/azure/azure-got-wrapper', () => { it('should set personal access token and endpoint', () => { hostRules.add({ hostType: PLATFORM_TYPE_AZURE, - token: '1234567890123456789012345678901234567890123456789012', + token: '123test', matchHost: 'https://dev.azure.com/renovate1', }); azure.setEndpoint('https://dev.azure.com/renovate1'); @@ -36,7 +36,7 @@ describe('platform/azure/azure-got-wrapper', () => { it('should set bearer token and endpoint', () => { hostRules.add({ hostType: PLATFORM_TYPE_AZURE, - token: 'token', + token: 'testtoken', matchHost: 'https://dev.azure.com/renovate2', }); azure.setEndpoint('https://dev.azure.com/renovate2'); diff --git a/lib/platform/azure/util.spec.ts b/lib/platform/azure/util.spec.ts index bb967ee5d91f55..9cdd579a7a5481 100644 --- a/lib/platform/azure/util.spec.ts +++ b/lib/platform/azure/util.spec.ts @@ -137,7 +137,7 @@ describe('platform/azure/util', () => { }); it('should configure personal access token', () => { const res = getStorageExtraCloneOpts({ - token: '1234567890123456789012345678901234567890123456789012', + token: '123456789012345678901234567890123456789012345678test', }); expect(res).toMatchSnapshot(); }); diff --git a/lib/platform/github/__snapshots__/index.spec.ts.snap b/lib/platform/github/__snapshots__/index.spec.ts.snap index 37ff4dedb235e2..7abd4022f17182 100644 --- a/lib/platform/github/__snapshots__/index.spec.ts.snap +++ b/lib/platform/github/__snapshots__/index.spec.ts.snap @@ -36,7 +36,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -55,7 +55,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "42", "content-type": "application/json", "host": "api.github.com", @@ -103,7 +103,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -125,7 +125,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "72", "content-type": "application/json", "host": "api.github.com", @@ -187,7 +187,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -207,7 +207,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "112", "content-type": "application/json", "host": "api.github.com", @@ -269,7 +269,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -289,7 +289,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "95", "content-type": "application/json", "host": "api.github.com", @@ -306,7 +306,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "19", "content-type": "application/json", "host": "api.github.com", @@ -368,7 +368,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -388,7 +388,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "98", "content-type": "application/json", "host": "api.github.com", @@ -436,7 +436,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -449,7 +449,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -495,7 +495,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -563,7 +563,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "674", "content-type": "application/json", "host": "api.github.com", @@ -576,7 +576,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -593,7 +593,7 @@ content", "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "44", "content-type": "application/json", "host": "api.github.com", @@ -641,7 +641,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -709,7 +709,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "674", "content-type": "application/json", "host": "api.github.com", @@ -722,7 +722,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -739,7 +739,7 @@ content", "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "44", "content-type": "application/json", "host": "api.github.com", @@ -787,7 +787,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -855,7 +855,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "674", "content-type": "application/json", "host": "api.github.com", @@ -874,7 +874,7 @@ content", "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "44", "content-type": "application/json", "host": "api.github.com", @@ -922,7 +922,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -990,7 +990,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "674", "content-type": "application/json", "host": "api.github.com", @@ -1003,7 +1003,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1049,7 +1049,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -1117,7 +1117,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "674", "content-type": "application/json", "host": "api.github.com", @@ -1130,7 +1130,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1176,7 +1176,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -1244,7 +1244,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "674", "content-type": "application/json", "host": "api.github.com", @@ -1257,7 +1257,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1268,7 +1268,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1314,7 +1314,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -1382,7 +1382,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "674", "content-type": "application/json", "host": "api.github.com", @@ -1395,7 +1395,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1406,7 +1406,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1452,7 +1452,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -1511,7 +1511,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "560", "content-type": "application/json", "host": "api.github.com", @@ -1524,7 +1524,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1570,7 +1570,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -1629,7 +1629,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "560", "content-type": "application/json", "host": "api.github.com", @@ -1647,7 +1647,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "54", "content-type": "application/json", "host": "api.github.com", @@ -1695,7 +1695,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -1754,7 +1754,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "560", "content-type": "application/json", "host": "api.github.com", @@ -1767,7 +1767,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1813,7 +1813,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -1872,7 +1872,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "560", "content-type": "application/json", "host": "api.github.com", @@ -1885,7 +1885,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1901,7 +1901,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "52", "content-type": "application/json", "host": "api.github.com", @@ -1949,7 +1949,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -2008,7 +2008,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "560", "content-type": "application/json", "host": "api.github.com", @@ -2029,7 +2029,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "78", "content-type": "application/json", "host": "api.github.com", @@ -2077,7 +2077,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -2136,7 +2136,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "560", "content-type": "application/json", "host": "api.github.com", @@ -2152,7 +2152,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "18", "content-type": "application/json", "host": "api.github.com", @@ -2165,7 +2165,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2211,7 +2211,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -2270,7 +2270,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "560", "content-type": "application/json", "host": "api.github.com", @@ -2318,7 +2318,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -2377,7 +2377,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "560", "content-type": "application/json", "host": "api.github.com", @@ -2390,7 +2390,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2436,7 +2436,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -2495,7 +2495,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "560", "content-type": "application/json", "host": "api.github.com", @@ -2508,7 +2508,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2554,7 +2554,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -2613,7 +2613,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "560", "content-type": "application/json", "host": "api.github.com", @@ -2626,7 +2626,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2642,7 +2642,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "57", "content-type": "application/json", "host": "api.github.com", @@ -2690,7 +2690,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -2749,7 +2749,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "560", "content-type": "application/json", "host": "api.github.com", @@ -2762,7 +2762,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2782,7 +2782,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "93", "content-type": "application/json", "host": "api.github.com", @@ -2844,7 +2844,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "531", "content-type": "application/json", "host": "api.github.com", @@ -2860,7 +2860,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "18", "content-type": "application/json", "host": "api.github.com", @@ -2922,7 +2922,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "531", "content-type": "application/json", "host": "api.github.com", @@ -2935,7 +2935,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2995,7 +2995,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "531", "content-type": "application/json", "host": "api.github.com", @@ -3013,7 +3013,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -3059,7 +3059,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -3072,7 +3072,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -3088,7 +3088,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -3134,7 +3134,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -3147,7 +3147,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -3193,7 +3193,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -3206,7 +3206,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -3220,7 +3220,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "31", "content-type": "application/json", "host": "api.github.com", @@ -3268,7 +3268,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -3281,7 +3281,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -3295,7 +3295,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "31", "content-type": "application/json", "host": "api.github.com", @@ -3312,7 +3312,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "36", "content-type": "application/json", "host": "api.github.com", @@ -3384,7 +3384,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -3397,7 +3397,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -3411,7 +3411,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "31", "content-type": "application/json", "host": "api.github.com", @@ -3428,7 +3428,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "36", "content-type": "application/json", "host": "api.github.com", @@ -3540,7 +3540,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.merge-info-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "1377", "content-type": "application/json", "host": "api.github.com", @@ -3608,7 +3608,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "674", "content-type": "application/json", "host": "api.github.com", @@ -3621,7 +3621,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -3667,7 +3667,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -3680,7 +3680,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -3750,7 +3750,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -3763,7 +3763,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -3873,7 +3873,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.merge-info-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "1377", "content-type": "application/json", "host": "api.github.com", @@ -3941,7 +3941,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "674", "content-type": "application/json", "host": "api.github.com", @@ -3954,7 +3954,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4024,7 +4024,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -4037,7 +4037,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4048,7 +4048,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4063,7 +4063,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "27", "content-type": "application/json", "host": "api.github.com", @@ -4076,7 +4076,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4186,7 +4186,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.merge-info-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "1377", "content-type": "application/json", "host": "api.github.com", @@ -4254,7 +4254,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "674", "content-type": "application/json", "host": "api.github.com", @@ -4267,7 +4267,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4313,7 +4313,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -4326,7 +4326,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4337,7 +4337,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.antiope-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4383,7 +4383,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -4431,7 +4431,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -4479,7 +4479,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -4492,7 +4492,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4503,7 +4503,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.antiope-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4549,7 +4549,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -4562,7 +4562,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4573,7 +4573,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.antiope-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4619,7 +4619,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -4632,7 +4632,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4643,7 +4643,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.antiope-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4689,7 +4689,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -4702,7 +4702,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4713,7 +4713,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.antiope-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4759,7 +4759,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -4772,7 +4772,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4783,7 +4783,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.antiope-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4829,7 +4829,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -4842,7 +4842,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4888,7 +4888,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -4901,7 +4901,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -4947,7 +4947,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -4960,7 +4960,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -5006,7 +5006,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -5019,7 +5019,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -5065,7 +5065,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -5078,7 +5078,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -5147,7 +5147,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -5259,7 +5259,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.merge-info-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "1377", "content-type": "application/json", "host": "api.github.com", @@ -5327,7 +5327,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "674", "content-type": "application/json", "host": "api.github.com", @@ -5391,7 +5391,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -5503,7 +5503,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.merge-info-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "1377", "content-type": "application/json", "host": "api.github.com", @@ -5564,7 +5564,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -5676,7 +5676,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.merge-info-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "1377", "content-type": "application/json", "host": "api.github.com", @@ -5744,7 +5744,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "674", "content-type": "application/json", "host": "api.github.com", @@ -5757,7 +5757,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -5821,7 +5821,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -5933,7 +5933,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.merge-info-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "1377", "content-type": "application/json", "host": "api.github.com", @@ -6001,7 +6001,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "674", "content-type": "application/json", "host": "api.github.com", @@ -6014,7 +6014,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -6076,7 +6076,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -6188,7 +6188,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.merge-info-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "1377", "content-type": "application/json", "host": "api.github.com", @@ -6256,7 +6256,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "674", "content-type": "application/json", "host": "api.github.com", @@ -6269,7 +6269,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -6315,7 +6315,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -6427,7 +6427,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.merge-info-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "1377", "content-type": "application/json", "host": "api.github.com", @@ -6495,7 +6495,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "674", "content-type": "application/json", "host": "api.github.com", @@ -6508,7 +6508,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -6524,7 +6524,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -6540,7 +6540,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -6556,7 +6556,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -6574,7 +6574,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -6597,7 +6597,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -6662,7 +6662,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.vixen-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "684", "content-type": "application/json", "host": "api.github.com", @@ -6729,7 +6729,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.vixen-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "684", "content-type": "application/json", "host": "api.github.com", @@ -6796,7 +6796,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.vixen-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "684", "content-type": "application/json", "host": "api.github.com", @@ -6863,7 +6863,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.vixen-preview+json, application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "684", "content-type": "application/json", "host": "api.github.com", @@ -6889,7 +6889,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "ghe.renovatebot.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -6900,7 +6900,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "ghe.renovatebot.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -6924,7 +6924,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -6935,7 +6935,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -6959,7 +6959,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -6970,7 +6970,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -6994,7 +6994,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -7005,7 +7005,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -7029,7 +7029,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -7082,7 +7082,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -7095,7 +7095,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -7106,7 +7106,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -7121,7 +7121,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "40", "content-type": "application/json", "host": "api.github.com", @@ -7138,7 +7138,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "41", "content-type": "application/json", "host": "api.github.com", @@ -7155,7 +7155,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "27", "content-type": "application/json", "host": "api.github.com", @@ -7210,7 +7210,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -7223,7 +7223,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -7234,7 +7234,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -7287,7 +7287,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -7342,7 +7342,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -7397,7 +7397,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -7452,7 +7452,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -7500,7 +7500,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -7548,7 +7548,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -7603,7 +7603,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -7616,7 +7616,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -7627,7 +7627,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -7642,7 +7642,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "27", "content-type": "application/json", "host": "api.github.com", @@ -7690,7 +7690,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -7708,7 +7708,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "github.company.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -7719,7 +7719,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "github.company.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -7760,7 +7760,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "github.company.com", @@ -7810,7 +7810,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -7826,7 +7826,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "25", "content-type": "application/json", "host": "api.github.com", @@ -7842,7 +7842,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "25", "content-type": "application/json", "host": "api.github.com", @@ -7858,7 +7858,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "25", "content-type": "application/json", "host": "api.github.com", @@ -7874,7 +7874,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "24", "content-type": "application/json", "host": "api.github.com", @@ -7922,7 +7922,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -7938,7 +7938,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "25", "content-type": "application/json", "host": "api.github.com", @@ -7954,7 +7954,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "25", "content-type": "application/json", "host": "api.github.com", @@ -7970,7 +7970,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "25", "content-type": "application/json", "host": "api.github.com", @@ -8018,7 +8018,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -8034,7 +8034,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "25", "content-type": "application/json", "host": "api.github.com", @@ -8082,7 +8082,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -8098,7 +8098,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "25", "content-type": "application/json", "host": "api.github.com", @@ -8146,7 +8146,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -8162,7 +8162,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "25", "content-type": "application/json", "host": "api.github.com", @@ -8210,7 +8210,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -8226,7 +8226,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "25", "content-type": "application/json", "host": "api.github.com", @@ -8274,7 +8274,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -8287,7 +8287,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -8333,7 +8333,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -8346,7 +8346,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -8363,7 +8363,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "101", "content-type": "application/json", "host": "api.github.com", @@ -8376,7 +8376,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -8387,7 +8387,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "host": "api.github.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -8433,7 +8433,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -8451,7 +8451,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "69", "content-type": "application/json", "host": "api.github.com", @@ -8499,7 +8499,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "351", "content-type": "application/json", "host": "api.github.com", @@ -8516,7 +8516,7 @@ Array [ "headers": Object { "accept": "application/vnd.github.v3+json", "accept-encoding": "gzip, deflate, br", - "authorization": "token abc123", + "authorization": "token 123test", "content-length": "52", "content-type": "application/json", "host": "api.github.com", diff --git a/lib/platform/github/index.spec.ts b/lib/platform/github/index.spec.ts index 23271d258b7127..b028dcafdb0e89 100644 --- a/lib/platform/github/index.spec.ts +++ b/lib/platform/github/index.spec.ts @@ -31,7 +31,7 @@ describe('platform/github/index', () => { '0d9c7726c3d628b7e28af234595cfd20febdbf8e' ); hostRules.find.mockReturnValue({ - token: 'abc123', + token: '123test', }); }); @@ -49,7 +49,7 @@ describe('platform/github/index', () => { it('should throw if user failure', async () => { httpMock.scope(githubApiHost).get('/user').reply(404); await expect( - github.initPlatform({ token: 'abc123' } as any) + github.initPlatform({ token: '123test' } as any) ).rejects.toThrow(); expect(httpMock.getTrace()).toMatchSnapshot(); }); @@ -63,7 +63,7 @@ describe('platform/github/index', () => { .get('/user/emails') .reply(400); expect( - await github.initPlatform({ token: 'abc123' } as any) + await github.initPlatform({ token: '123test' } as any) ).toMatchSnapshot(); expect(httpMock.getTrace()).toMatchSnapshot(); }); @@ -77,14 +77,14 @@ describe('platform/github/index', () => { .get('/user/emails') .reply(200, [{}]); expect( - await github.initPlatform({ token: 'abc123' } as any) + await github.initPlatform({ token: '123test' } as any) ).toMatchSnapshot(); expect(httpMock.getTrace()).toMatchSnapshot(); }); it('should support gitAuthor and username', async () => { expect( await github.initPlatform({ - token: 'abc123', + token: '123test', username: 'renovate-bot', gitAuthor: 'renovate@whitesourcesoftware.com', } as any) @@ -104,7 +104,7 @@ describe('platform/github/index', () => { }, ]); expect( - await github.initPlatform({ token: 'abc123' } as any) + await github.initPlatform({ token: '123test' } as any) ).toMatchSnapshot(); expect(httpMock.getTrace()).toMatchSnapshot(); }); @@ -124,7 +124,7 @@ describe('platform/github/index', () => { expect( await github.initPlatform({ endpoint: 'https://ghe.renovatebot.com', - token: 'abc123', + token: '123test', }) ).toMatchSnapshot(); expect(httpMock.getTrace()).toMatchSnapshot(); @@ -2083,10 +2083,10 @@ describe('platform/github/index', () => { initRepoMock(scope, 'some/repo'); await github.initPlatform({ endpoint: 'https://github.company.com', - token: 'abc123', + token: '123test', }); hostRules.find.mockReturnValue({ - token: 'abc123', + token: '123test', }); await github.initRepo({ repository: 'some/repo', diff --git a/lib/platform/gitlab/__snapshots__/index.spec.ts.snap b/lib/platform/gitlab/__snapshots__/index.spec.ts.snap index 9fffb450cdf82f..cb3bc7f6992e5f 100644 --- a/lib/platform/gitlab/__snapshots__/index.spec.ts.snap +++ b/lib/platform/gitlab/__snapshots__/index.spec.ts.snap @@ -6,7 +6,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -17,7 +17,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -33,7 +33,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -44,7 +44,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -55,7 +55,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -66,7 +66,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -82,7 +82,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -98,7 +98,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -109,7 +109,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -120,7 +120,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -131,7 +131,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -177,7 +177,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "142", "content-type": "application/json", "host": "gitlab.com", @@ -190,7 +190,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -205,7 +205,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "57", "content-type": "application/json", "host": "gitlab.com", @@ -218,7 +218,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -229,7 +229,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -244,7 +244,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "72", "content-type": "application/json", "host": "gitlab.com", @@ -292,7 +292,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "142", "content-type": "application/json", "host": "gitlab.com", @@ -305,7 +305,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -316,7 +316,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -331,7 +331,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "72", "content-type": "application/json", "host": "gitlab.com", @@ -379,7 +379,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "142", "content-type": "application/json", "host": "gitlab.com", @@ -392,7 +392,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -403,7 +403,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -414,7 +414,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -429,7 +429,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "72", "content-type": "application/json", "host": "gitlab.com", @@ -480,7 +480,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -500,7 +500,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "158", "content-type": "application/json", "host": "gitlab.com", @@ -551,7 +551,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -571,7 +571,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "158", "content-type": "application/json", "host": "gitlab.com", @@ -630,7 +630,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "144", "content-type": "application/json", "host": "gitlab.com", @@ -678,7 +678,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "142", "content-type": "application/json", "host": "gitlab.com", @@ -691,7 +691,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -706,7 +706,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "57", "content-type": "application/json", "host": "gitlab.com", @@ -719,7 +719,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -730,7 +730,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -745,7 +745,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "72", "content-type": "application/json", "host": "gitlab.com", @@ -805,7 +805,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "149", "content-type": "application/json", "host": "gitlab.com", @@ -865,7 +865,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "151", "content-type": "application/json", "host": "gitlab.com", @@ -924,7 +924,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "142", "content-type": "application/json", "host": "gitlab.com", @@ -942,7 +942,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -956,7 +956,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "25", "content-type": "application/json", "host": "gitlab.com", @@ -974,7 +974,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -985,7 +985,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1002,7 +1002,7 @@ content", "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "44", "content-type": "application/json", "host": "gitlab.com", @@ -1020,7 +1020,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1031,7 +1031,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1048,7 +1048,7 @@ content", "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "44", "content-type": "application/json", "host": "gitlab.com", @@ -1066,7 +1066,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1077,7 +1077,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1093,7 +1093,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1104,7 +1104,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1120,7 +1120,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1131,7 +1131,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1142,7 +1142,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1158,7 +1158,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1169,7 +1169,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1180,7 +1180,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1196,7 +1196,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1212,7 +1212,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "61", "content-type": "application/json", "host": "gitlab.com", @@ -1230,7 +1230,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1249,7 +1249,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "85", "content-type": "application/json", "host": "gitlab.com", @@ -1267,7 +1267,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1278,7 +1278,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1294,7 +1294,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1305,7 +1305,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1320,7 +1320,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "49", "content-type": "application/json", "host": "gitlab.com", @@ -1338,7 +1338,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1349,7 +1349,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1368,7 +1368,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "85", "content-type": "application/json", "host": "gitlab.com", @@ -1386,7 +1386,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1400,7 +1400,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "23", "content-type": "application/json", "host": "gitlab.com", @@ -1424,7 +1424,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1435,7 +1435,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1457,7 +1457,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1479,7 +1479,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1495,7 +1495,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1506,7 +1506,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1522,7 +1522,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1538,7 +1538,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1554,7 +1554,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1570,7 +1570,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1586,7 +1586,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1602,7 +1602,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1618,7 +1618,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1634,7 +1634,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1645,7 +1645,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1677,7 +1677,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1688,7 +1688,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1699,7 +1699,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1710,7 +1710,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1743,7 +1743,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1754,7 +1754,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1765,7 +1765,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1776,7 +1776,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1809,7 +1809,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1820,7 +1820,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1831,7 +1831,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1842,7 +1842,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1858,7 +1858,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1869,7 +1869,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1885,7 +1885,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1896,7 +1896,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1912,7 +1912,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1923,7 +1923,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1939,7 +1939,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1950,7 +1950,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1966,7 +1966,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1977,7 +1977,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -1993,7 +1993,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2004,7 +2004,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2020,7 +2020,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2031,7 +2031,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2047,7 +2047,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2058,7 +2058,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2074,7 +2074,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2085,7 +2085,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2101,7 +2101,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2117,7 +2117,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2128,7 +2128,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2144,7 +2144,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2155,7 +2155,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2171,7 +2171,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2182,7 +2182,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2198,7 +2198,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2209,7 +2209,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2225,7 +2225,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2236,7 +2236,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2252,7 +2252,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2263,7 +2263,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2298,7 +2298,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2333,7 +2333,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2367,7 +2367,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2401,7 +2401,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2434,7 +2434,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2445,7 +2445,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2456,7 +2456,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2472,7 +2472,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2488,7 +2488,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2511,7 +2511,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2527,7 +2527,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2627,7 +2627,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2643,7 +2643,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2662,7 +2662,7 @@ Array [ "ignorePrAuthor": undefined, "mergeMethod": "merge", "repository": "some%2Frepo%2Fproject", - "url": "http://oauth2:abc123@mycompany.com/gitlab/some/repo/project.git", + "url": "http://oauth2:123test@mycompany.com/gitlab/some/repo/project.git", }, ], ] @@ -2696,7 +2696,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "mycompany.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2712,7 +2712,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2728,7 +2728,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2744,7 +2744,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2760,7 +2760,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2776,7 +2776,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2792,7 +2792,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2808,7 +2808,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2824,7 +2824,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2840,7 +2840,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2887,7 +2887,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "36", "content-type": "application/json", "host": "gitlab.com", @@ -2905,7 +2905,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2922,7 +2922,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "101", "content-type": "application/json", "host": "gitlab.com", @@ -2935,7 +2935,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2951,7 +2951,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2968,7 +2968,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "100", "content-type": "application/json", "host": "gitlab.com", @@ -2981,7 +2981,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -2997,7 +2997,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -3014,7 +3014,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "101", "content-type": "application/json", "host": "gitlab.com", @@ -3027,7 +3027,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -3065,7 +3065,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -3081,7 +3081,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "60", "content-type": "application/json", "host": "gitlab.com", @@ -3121,7 +3121,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -3136,7 +3136,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "45", "content-type": "application/json", "host": "gitlab.com", @@ -3176,7 +3176,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -3191,7 +3191,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "45", "content-type": "application/json", "host": "gitlab.com", @@ -3231,7 +3231,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "host": "gitlab.com", "user-agent": "RenovateBot/0.0.0-semantic-release (https://github.com/renovatebot/renovate)", }, @@ -3246,7 +3246,7 @@ Array [ "headers": Object { "accept": "application/json", "accept-encoding": "gzip, deflate, br", - "authorization": "Bearer abc123", + "authorization": "Bearer 123test", "content-length": "38", "content-type": "application/json", "host": "gitlab.com", diff --git a/lib/platform/gitlab/index.spec.ts b/lib/platform/gitlab/index.spec.ts index e31a3a5523583d..51eb145adc641f 100644 --- a/lib/platform/gitlab/index.spec.ts +++ b/lib/platform/gitlab/index.spec.ts @@ -40,7 +40,7 @@ describe('platform/gitlab/index', () => { '0d9c7726c3d628b7e28af234595cfd20febdbf8e' ); hostRules.find.mockReturnValue({ - token: 'abc123', + token: '123test', }); delete process.env.GITLAB_IGNORE_REPO_URL; }); diff --git a/lib/util/http/auth.spec.ts b/lib/util/http/auth.spec.ts index a2d4df7175f25c..8737d084b25933 100644 --- a/lib/util/http/auth.spec.ts +++ b/lib/util/http/auth.spec.ts @@ -111,7 +111,7 @@ describe('util/http/auth', () => { const opts: GotOptions = { headers: {}, // Personal Access Token is exactly 20 characters long - token: '01234567890123456789', + token: '0123456789012345test', hostType: PLATFORM_TYPE_GITLAB, }; @@ -120,10 +120,10 @@ describe('util/http/auth', () => { expect(opts).toMatchInlineSnapshot(` Object { "headers": Object { - "Private-token": "01234567890123456789", + "Private-token": "0123456789012345test", }, "hostType": "gitlab", - "token": "01234567890123456789", + "token": "0123456789012345test", } `); }); @@ -132,7 +132,7 @@ describe('util/http/auth', () => { const opts: GotOptions = { headers: {}, token: - 'a40bdd925a0c0b9c4cdd19d101c0df3b2bcd063ab7ad6706f03bcffcec01e863', + 'a40bdd925a0c0b9c4cdd19d101c0df3b2bcd063ab7ad6706f03bcffcec01test', hostType: PLATFORM_TYPE_GITLAB, }; @@ -141,10 +141,10 @@ describe('util/http/auth', () => { expect(opts).toMatchInlineSnapshot(` Object { "headers": Object { - "authorization": "Bearer a40bdd925a0c0b9c4cdd19d101c0df3b2bcd063ab7ad6706f03bcffcec01e863", + "authorization": "Bearer a40bdd925a0c0b9c4cdd19d101c0df3b2bcd063ab7ad6706f03bcffcec01test", }, "hostType": "gitlab", - "token": "a40bdd925a0c0b9c4cdd19d101c0df3b2bcd063ab7ad6706f03bcffcec01e863", + "token": "a40bdd925a0c0b9c4cdd19d101c0df3b2bcd063ab7ad6706f03bcffcec01test", } `); }); @@ -152,8 +152,7 @@ describe('util/http/auth', () => { it(`npm basic token`, () => { const opts: GotOptions = { headers: {}, - token: - 'a40bdd925a0c0b9c4cdd19d101c0df3b2bcd063ab7ad6706f03bcffcec01e863', + token: 'test', hostType: 'npm', context: { authType: 'Basic', @@ -167,19 +166,17 @@ describe('util/http/auth', () => { authType: 'Basic', }, headers: { - authorization: - 'Basic a40bdd925a0c0b9c4cdd19d101c0df3b2bcd063ab7ad6706f03bcffcec01e863', + authorization: 'Basic test', }, hostType: 'npm', - token: - 'a40bdd925a0c0b9c4cdd19d101c0df3b2bcd063ab7ad6706f03bcffcec01e863', + token: 'test', }); }); it(`bare token`, () => { const opts: GotOptions = { headers: {}, - token: '01234567890123456789', + token: 'test', context: { authType: 'Token-Only', }, @@ -192,9 +189,9 @@ describe('util/http/auth', () => { authType: 'Token-Only', }, headers: { - authorization: '01234567890123456789', + authorization: 'test', }, - token: '01234567890123456789', + token: 'test', }); }); }); diff --git a/lib/util/http/github.spec.ts b/lib/util/http/github.spec.ts index 36e19ebcd8239b..9a4af9071aeeea 100644 --- a/lib/util/http/github.spec.ts +++ b/lib/util/http/github.spec.ts @@ -52,7 +52,7 @@ describe('util/http/github', () => { describe('HTTP', () => { it('supports app mode', async () => { - hostRules.add({ hostType: 'github', token: 'x-access-token:abc123' }); + hostRules.add({ hostType: 'github', token: 'x-access-token:123test' }); httpMock.scope(githubApiHost).get('/some-url').reply(200); await githubApi.get('/some-url', { headers: { accept: 'some-accept' }, @@ -62,7 +62,7 @@ describe('util/http/github', () => { expect(req.headers.accept).toBe( 'some-accept, application/vnd.github.machine-man-preview+json' ); - expect(req.headers.authorization).toBe('token abc123'); + expect(req.headers.authorization).toBe('token 123test'); }); it('supports different datasources', async () => { @@ -359,7 +359,7 @@ describe('util/http/github', () => { expect(req.url).toEqual('https://ghe.mycompany.com/api/graphql'); }); it('supports app mode', async () => { - hostRules.add({ hostType: 'github', token: 'x-access-token:abc123' }); + hostRules.add({ hostType: 'github', token: 'x-access-token:123test' }); httpMock .scope(githubApiHost) .post('/graphql') diff --git a/lib/util/http/gitlab.spec.ts b/lib/util/http/gitlab.spec.ts index 13f6a3962f6c35..103640c7b078b2 100644 --- a/lib/util/http/gitlab.spec.ts +++ b/lib/util/http/gitlab.spec.ts @@ -5,6 +5,11 @@ import { GitlabReleasesDatasource } from '../../datasource/gitlab-releases'; import * as hostRules from '../host-rules'; import { GitlabHttp, setBaseUrl } from './gitlab'; +hostRules.add({ + hostType: PLATFORM_TYPE_GITLAB, + token: '123test', +}); + const gitlabApiHost = 'https://gitlab.com'; const selfHostedUrl = 'http://mycompany.com/gitlab'; diff --git a/lib/util/merge-confidence/index.spec.ts b/lib/util/merge-confidence/index.spec.ts index 6c636107f896ac..35374a87eb8ef7 100644 --- a/lib/util/merge-confidence/index.spec.ts +++ b/lib/util/merge-confidence/index.spec.ts @@ -95,7 +95,7 @@ describe('util/merge-confidence/index', () => { }); it('returns valid confidence level', async () => { - hostRules.add({ hostType: 'merge-confidence', token: 'abc123' }); + hostRules.add({ hostType: 'merge-confidence', token: '123test' }); const datasource = 'npm'; const depName = 'renovate'; const currentVersion = '24.3.0'; @@ -118,7 +118,7 @@ describe('util/merge-confidence/index', () => { }); it('returns neutral if invalid confidence level', async () => { - hostRules.add({ hostType: 'merge-confidence', token: 'abc123' }); + hostRules.add({ hostType: 'merge-confidence', token: '123test' }); const datasource = 'npm'; const depName = 'renovate'; const currentVersion = '25.0.0'; @@ -141,7 +141,7 @@ describe('util/merge-confidence/index', () => { }); it('returns neutral if exception from API', async () => { - hostRules.add({ hostType: 'merge-confidence', token: 'abc123' }); + hostRules.add({ hostType: 'merge-confidence', token: '123test' }); const datasource = 'npm'; const depName = 'renovate'; const currentVersion = '25.0.0'; diff --git a/lib/util/sanitize.spec.ts b/lib/util/sanitize.spec.ts index db76bc89fb3125..c3d96fb9d59fee 100644 --- a/lib/util/sanitize.spec.ts +++ b/lib/util/sanitize.spec.ts @@ -9,7 +9,7 @@ describe('util/sanitize', () => { expect(sanitize(null)).toBeNull(); }); it('sanitizes secrets from strings', () => { - const token = 'abc123token'; + const token = '123testtoken'; const username = 'userabc'; const password = 'password123'; add(token); diff --git a/lib/util/template/index.spec.ts b/lib/util/template/index.spec.ts index 0df9844e692c4b..652d0f5e352757 100644 --- a/lib/util/template/index.spec.ts +++ b/lib/util/template/index.spec.ts @@ -12,10 +12,10 @@ describe('util/template/index', () => { it('filters out disallowed fields', () => { const userTemplate = '{{#if isFoo}}foo{{/if}}{{platform}} token = "{{token}}"'; - const input = { isFoo: true, platform: 'github', token: 'abc123 ' }; + const input = { isFoo: true, platform: 'github', token: '123test ' }; const output = template.compile(userTemplate, input); expect(output).toMatchSnapshot(); expect(output).toContain('github'); - expect(output).not.toContain('abc123'); + expect(output).not.toContain('123test'); }); }); diff --git a/lib/workers/branch/commit.spec.ts b/lib/workers/branch/commit.spec.ts index 3062c17bba7a50..6a99afd89cf361 100644 --- a/lib/workers/branch/commit.spec.ts +++ b/lib/workers/branch/commit.spec.ts @@ -20,7 +20,7 @@ describe('workers/branch/commit', () => { updatedArtifacts: [], }); jest.resetAllMocks(); - git.commitFiles.mockResolvedValueOnce('abc123'); + git.commitFiles.mockResolvedValueOnce('123test'); setGlobalConfig(); }); it('handles empty files', async () => { diff --git a/lib/workers/branch/index.spec.ts b/lib/workers/branch/index.spec.ts index 3e4697fea274be..a73e58ea75d567 100644 --- a/lib/workers/branch/index.spec.ts +++ b/lib/workers/branch/index.spec.ts @@ -82,7 +82,7 @@ describe('workers/branch/index', () => { upgrades: [{ depName: 'some-dep-name' }], } as BranchConfig; schedule.isScheduledNow.mockReturnValue(true); - commit.commitFilesToBranch.mockResolvedValue('abc123'); + commit.commitFilesToBranch.mockResolvedValue('123test'); platform.massageMarkdown.mockImplementation((prBody) => prBody); prWorker.ensurePr.mockResolvedValue({ @@ -297,8 +297,8 @@ describe('workers/branch/index', () => { it('continues branch if branch edited and but PR found', async () => { git.branchExists.mockReturnValue(true); git.isBranchModified.mockResolvedValueOnce(true); - git.getBranchCommit.mockReturnValueOnce('abc123'); - platform.findPr.mockResolvedValueOnce({ sha: 'abc123' } as any); + git.getBranchCommit.mockReturnValueOnce('123test'); + platform.findPr.mockResolvedValueOnce({ sha: '123test' } as any); const res = await branchWorker.processBranch(config); // FIXME: explicit assert condition expect(res).toMatchSnapshot(); @@ -306,7 +306,7 @@ describe('workers/branch/index', () => { it('skips branch if branch edited and and PR found with sha mismatch', async () => { git.branchExists.mockReturnValue(true); git.isBranchModified.mockResolvedValueOnce(true); - git.getBranchCommit.mockReturnValueOnce('abc123'); + git.getBranchCommit.mockReturnValueOnce('123test'); platform.findPr.mockResolvedValueOnce({ sha: 'def456' } as any); const res = await branchWorker.processBranch(config); // FIXME: explicit assert condition diff --git a/lib/workers/global/autodiscover.spec.ts b/lib/workers/global/autodiscover.spec.ts index 6a564570c16d1f..b5cdaaa7700f5b 100644 --- a/lib/workers/global/autodiscover.spec.ts +++ b/lib/workers/global/autodiscover.spec.ts @@ -19,7 +19,7 @@ describe('workers/global/autodiscover', () => { config = {}; await platform.initPlatform({ platform: PLATFORM_TYPE_GITHUB, - token: 'abc123', + token: '123test', endpoint: 'endpoint', }); }); diff --git a/lib/workers/global/config/parse/cli.ts b/lib/workers/global/config/parse/cli.ts index 71628de72f3337..81632f4caf77b5 100644 --- a/lib/workers/global/config/parse/cli.ts +++ b/lib/workers/global/config/parse/cli.ts @@ -86,7 +86,7 @@ export function getConfig(input: string[]): AllConfig { /* eslint-disable no-console */ console.log(' Examples:'); console.log(''); - console.log(' $ renovate --token abc123 singapore/lint-condo'); + console.log(' $ renovate --token 123test singapore/lint-condo'); console.log( ' $ LOG_LEVEL=debug renovate --labels=renovate,dependency --ignore-unstable=false singapore/lint-condo' ); diff --git a/lib/workers/global/config/parse/index.spec.ts b/lib/workers/global/config/parse/index.spec.ts index 8dd3942f23bddc..6b8399e20511b9 100644 --- a/lib/workers/global/config/parse/index.spec.ts +++ b/lib/workers/global/config/parse/index.spec.ts @@ -36,7 +36,7 @@ describe('workers/global/config/parse/index', () => { defaultArgv = defaultArgv.concat([ '--token=abc', '--pr-footer=custom', - '--log-context=abc123', + '--log-context=123test', ]); const parsedConfig = await configParser.parseConfigs( defaultEnv, @@ -45,7 +45,7 @@ describe('workers/global/config/parse/index', () => { expect(parsedConfig).toContainEntries([ ['token', 'abc'], ['prFooter', 'custom'], - ['logContext', 'abc123'], + ['logContext', '123test'], ]); }); diff --git a/lib/workers/repository/onboarding/branch/index.spec.ts b/lib/workers/repository/onboarding/branch/index.spec.ts index 951c969f79e420..035718e18022ff 100644 --- a/lib/workers/repository/onboarding/branch/index.spec.ts +++ b/lib/workers/repository/onboarding/branch/index.spec.ts @@ -168,7 +168,7 @@ describe('workers/repository/onboarding/branch/index', () => { git.getFileList.mockResolvedValue(['package.json']); platform.findPr.mockResolvedValue(null); platform.getBranchPr.mockResolvedValueOnce(mock()); - rebase.rebaseOnboardingBranch.mockResolvedValueOnce('abc123'); + rebase.rebaseOnboardingBranch.mockResolvedValueOnce('123test'); const res = await checkOnboardingBranch(config); expect(res.repoIsOnboarded).toBe(false); expect(res.branchList).toEqual(['renovate/configure']); diff --git a/lib/workers/repository/process/extract-update.spec.ts b/lib/workers/repository/process/extract-update.spec.ts index ae98f5efbaa015..daa9840aadff9a 100644 --- a/lib/workers/repository/process/extract-update.spec.ts +++ b/lib/workers/repository/process/extract-update.spec.ts @@ -29,7 +29,7 @@ describe('workers/repository/process/extract-update', () => { suppressNotifications: ['deprecationWarningIssues'], }; repositoryCache.getCache.mockReturnValueOnce({ scan: {} }); - git.checkoutBranch.mockResolvedValueOnce('abc123'); + git.checkoutBranch.mockResolvedValueOnce('123test'); const packageFiles = await extract(config); const res = await lookup(config, packageFiles); // FIXME: explicit assert condition @@ -42,7 +42,7 @@ describe('workers/repository/process/extract-update', () => { repoIsOnboarded: true, suppressNotifications: ['deprecationWarningIssues'], }; - git.checkoutBranch.mockResolvedValueOnce('abc123'); + git.checkoutBranch.mockResolvedValueOnce('123test'); repositoryCache.getCache.mockReturnValueOnce({ scan: {} }); const packageFiles = await extract(config); // FIXME: explicit assert condition @@ -58,14 +58,14 @@ describe('workers/repository/process/extract-update', () => { repositoryCache.getCache.mockReturnValueOnce({ scan: { master: { - sha: 'abc123', + sha: '123test', configHash: hasha(JSON.stringify(config)), packageFiles, }, }, }); - git.getBranchCommit.mockReturnValueOnce('abc123'); - git.checkoutBranch.mockResolvedValueOnce('abc123'); + git.getBranchCommit.mockReturnValueOnce('123test'); + git.checkoutBranch.mockResolvedValueOnce('123test'); const res = await extract(config); expect(res).toEqual(packageFiles); });