Skip to content

Commit

Permalink
Merge branch 'renovatebot:main' into patch-3
Browse files Browse the repository at this point in the history
  • Loading branch information
wwuck authored Jan 16, 2024
2 parents a599674 + a540c9f commit 10e8542
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
3 changes: 3 additions & 0 deletions lib/config/presets/internal/monorepo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,7 @@ const repoGroups = {
jsplumb: 'https://github.com/jsplumb/jsplumb',
junit5: 'https://github.com/junit-team/junit5',
kotlin: 'https://github.com/JetBrains/kotlin',
lamar: 'https://github.com/JasperFx/lamar',
lerna: 'https://github.com/lerna/lerna',
lexical: 'https://github.com/facebook/lexical',
linguijs: 'https://github.com/lingui/js-lingui',
Expand Down Expand Up @@ -465,6 +466,8 @@ const repoGroups = {
'telus-tds': 'https://github.com/telusdigital/tds',
'telus-tds-core': 'https://github.com/telus/tds-core',
'temporalio-ts': 'https://github.com/temporalio/sdk-typescript',
'testcontainers-dotnet':
'https://github.com/testcontainers/testcontainers-dotnet',
'testcontainers-go': 'https://github.com/testcontainers/testcontainers-go',
'testcontainers-java':
'https://github.com/testcontainers/testcontainers-java',
Expand Down
9 changes: 7 additions & 2 deletions lib/util/compress.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
import { promisify } from 'node:util';
import zlib from 'node:zlib';
import zlib, { constants } from 'node:zlib';

const brotliCompress = promisify(zlib.brotliCompress);
const brotliDecompress = promisify(zlib.brotliDecompress);

export async function compress(input: string): Promise<string> {
const buf = await brotliCompress(input);
const buf = await brotliCompress(input, {
params: {
[constants.BROTLI_PARAM_MODE]: constants.BROTLI_MODE_TEXT,
[constants.BROTLI_PARAM_QUALITY]: 8,
},
});
return buf.toString('base64');
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
"@opentelemetry/sdk-trace-node": "1.19.0",
"@opentelemetry/semantic-conventions": "1.19.0",
"@qnighy/marshal": "0.1.3",
"@renovatebot/osv-offline": "1.3.12",
"@renovatebot/osv-offline": "1.4.0",
"@renovatebot/pep440": "3.0.17",
"@renovatebot/ruby-semver": "3.0.22",
"@sindresorhus/is": "4.6.0",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 10e8542

Please sign in to comment.