Skip to content

Commit

Permalink
Merge pull request #195 from docker/dependabot/npm_and_yarn/csv-parse…
Browse files Browse the repository at this point in the history
…-5.0.4

Bump csv-parse from 4.16.3 to 5.0.4
  • Loading branch information
crazy-max committed Apr 25, 2022
2 parents a3ea951 + 4b640ab commit 5351305
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 33 deletions.
20 changes: 10 additions & 10 deletions dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions jest.config.ts
Expand Up @@ -6,5 +6,8 @@ module.exports = {
transform: {
'^.+\\.ts$': 'ts-jest'
},
moduleNameMapper: {
'^csv-parse/sync': '<rootDir>/node_modules/csv-parse/dist/cjs/sync.cjs'
},
verbose: true
};
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -32,7 +32,7 @@
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.1",
"@renovate/pep440": "^1.0.0",
"csv-parse": "^4.16.3",
"csv-parse": "^5.0.4",
"handlebars": "^4.7.7",
"moment": "^2.29.3",
"semver": "^7.3.7"
Expand Down
20 changes: 11 additions & 9 deletions src/context.ts
@@ -1,4 +1,4 @@
import csvparse from 'csv-parse/lib/sync';
import {parse} from 'csv-parse/sync';
import * as core from '@actions/core';
import {issueCommand} from '@actions/core/lib/command';
import * as fs from 'fs';
Expand Down Expand Up @@ -46,21 +46,23 @@ export function getInputList(name: string, ignoreComma?: boolean): string[] {
return res;
}

for (const output of csvparse(items, {
const records = parse(items, {
columns: false,
relax: true,
relaxQuotes: true,
comment: '#',
relaxColumnCount: true,
skipLinesWithEmptyValues: true
}) as Array<string[]>) {
if (output.length == 1) {
res.push(output[0]);
skipEmptyLines: true
});

for (const record of records as Array<string[]>) {
if (record.length == 1) {
res.push(record[0]);
continue;
} else if (!ignoreComma) {
res.push(...output);
res.push(...record);
continue;
}
res.push(output.join(','));
res.push(record.join(','));
}

return res.filter(item => item).map(pat => pat.trim());
Expand Down
6 changes: 3 additions & 3 deletions src/flavor.ts
@@ -1,5 +1,5 @@
import {parse} from 'csv-parse/sync';
import * as core from '@actions/core';
import csvparse from 'csv-parse/lib/sync';

export interface Flavor {
latest: string;
Expand All @@ -19,9 +19,9 @@ export function Transform(inputs: string[]): Flavor {
};

for (const input of inputs) {
const fields = csvparse(input, {
const fields = parse(input, {
relaxColumnCount: true,
skipLinesWithEmptyValues: true
skipEmptyLines: true
})[0];
let onlatestfor = '';
for (const field of fields) {
Expand Down
6 changes: 3 additions & 3 deletions src/tag.ts
@@ -1,4 +1,4 @@
import csvparse from 'csv-parse/lib/sync';
import {parse} from 'csv-parse/sync';
import * as core from '@actions/core';

export enum Type {
Expand Down Expand Up @@ -86,9 +86,9 @@ export function Transform(inputs: string[]): Tag[] {
}

export function Parse(s: string): Tag {
const fields = csvparse(s, {
const fields = parse(s, {
relaxColumnCount: true,
skipLinesWithEmptyValues: true
skipEmptyLines: true
})[0];

const tag = new Tag();
Expand Down
7 changes: 1 addition & 6 deletions yarn.lock
Expand Up @@ -1604,16 +1604,11 @@ cssstyle@^2.3.0:
dependencies:
cssom "~0.3.6"

csv-parse@*:
csv-parse@*, csv-parse@^5.0.4:
version "5.0.4"
resolved "https://registry.yarnpkg.com/csv-parse/-/csv-parse-5.0.4.tgz#97e5e654413bcf95f2714ce09bcb2be6de0eb8e3"
integrity sha512-5AIdl8l6n3iYQYxan5djB5eKDa+vBnhfWZtRpJTcrETWfVLYN0WSj3L9RwvgYt+psoO77juUr8TG8qpfGZifVQ==

csv-parse@^4.16.3:
version "4.16.3"
resolved "https://registry.yarnpkg.com/csv-parse/-/csv-parse-4.16.3.tgz#7ca624d517212ebc520a36873c3478fa66efbaf7"
integrity sha512-cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==

data-urls@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b"
Expand Down

0 comments on commit 5351305

Please sign in to comment.