Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: upgrade pkgs + fix some bugs in scripts - [NGC-261] #2180

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 13, 2023

Upgrade packages via dependabot and fixes some bugs in the translation scripts + remove the documentationToJSON script.

Note

There is some format updated so you should check Hide whitespace in the Files changed view.
image

Dependabot

Bumps the dev-dependencies group with 8 updates:

Package From To
nodemon 2.0.20 3.0.1
prettier 2.7.1 3.1.0
yaml 2.2.2 2.3.4
deepl-node 1.7.0 1.11.0
dotenv 16.0.3 16.3.1
piscina 3.2.0 4.1.0
ramda 0.28.0 0.29.1
yargs 17.6.0 17.7.2
Dependabot's details

Updates nodemon from 2.0.20 to 3.0.1

Release notes

Sourced from nodemon's releases.

v3.0.1

3.0.1 (2023-07-09)

Bug Fixes

v3.0.0

3.0.0 (2023-07-08)

Bug Fixes

Features

  • always use polling on IBM i (3b58104)

BREAKING CHANGES

  • official support for node@8 dropped.

However there's no function being used in semver that breaks node 8, so it's technically still possible to run with node 8, but it will no longer be supported (or tested in CI).

v2.0.22

2.0.22 (2023-03-22)

Bug Fixes

  • remove ts mapping if loader present (f7816e4), closes #2083

v2.0.21

2.0.21 (2023-03-02)

Bug Fixes

  • remove ts mapping if loader present (1468397), closes #2083
Commits
  • e4c163f Merge branch 'main' of github.com:remy/nodemon
  • 95bee00 fix: restore default ext watch behaviour
  • f219dcc test: Update release.yml to use ubuntu-latest (#2123)
  • af3b9e2 fix: node@10 support back in
  • a3f0e12 test: package wasn't installing
  • 8ded28c docs: update test runners and add TODO
  • 83ef51d chore: website supporters
  • 86d5f40 fix: also watch cjs
  • 7881f05 chore: remove legacy .nodemon support
  • 04302b8 Merge branch 'Vindeep07-develop'
  • Additional commits viewable in compare view

Updates prettier from 2.7.1 to 3.1.0

Release notes

Sourced from prettier's releases.

3.1.0

diff

🔗 Release note

3.0.3

🔗 Changelog

3.0.2

🔗 Changelog

3.0.1

🔗 Changelog

3.0.0

diff

🔗 Release note

3.0.0-alpha.6

What's Changed

Other changes since v2, see 3.0.0-alpha.1 release notes

Full Changelog: prettier/prettier@3.0.0-alpha.5...3.0.0-alpha.6

3.0.0-alpha.5

What's Changed

Other changes since v2, see 3.0.0-alpha.1 release notes

Full Changelog: prettier/prettier@3.0.0-alpha.4...3.0.0-alpha.5

3.0.0-alpha.4

What's Changed

Other changes since v2, see 3.0.0-alpha.1 release notes

Full Changelog: prettier/prettier@3.0.0-alpha.3...3.0.0-alpha.4

3.0.0-alpha.3

  • Fix exports field in package.json file

Other changes since v2, see 3.0.0-alpha.1 release notes

... (truncated)

Changelog

Sourced from prettier's changelog.

3.1.0

diff

🔗 Release Notes

3.0.3

diff

Add preferUnplugged: true to package.json (#15169 by @​fisker and @​so1ve)

Prettier v3 uses dynamic imports, user will need to unplug Prettier when Yarn's PnP mode is enabled, add preferUnplugged: true to package.json, so Yarn will install Prettier as unplug by default.

Support shared config that forbids require() (#15233 by @​fisker)

If an external shared config package is used, and the package exports don't have require or default export.

In Prettier 3.0.2 Prettier fails when attempt to require() the package, and throws an error.

Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No "exports" main defined in <packageName>/package.json

Allow argument of require() to break (#15256 by @​fisker)

// Input
const plugin = require(
  global.STANDALONE
    ? path.join(__dirname, "../standalone.js")
    : path.join(__dirname, "..")
);
// Prettier 3.0.2
const plugin = require(global.STANDALONE
? path.join(__dirname, "../standalone.js")
: path.join(__dirname, ".."));
// Prettier 3.0.3
const plugin = require(
global.STANDALONE
? path.join(__dirname, "../standalone.js")
: path.join(__dirname, "..")
);

Do not print trailing commas in arrow function type parameter lists in ts code blocks (#15286 by @​sosukesuzuki)

... (truncated)

Commits
  • e8ac9f8 Release 3.1.0
  • 6a1d409 chore(deps): update dependency eslint-plugin-regexp to v2 (#15521)
  • f4d93d3 chore(deps): update dependency esbuild to v0.19.5 (#15630)
  • 4fc71a5 chore(deps): update dependency flow-parser to v0.221.0 (#15637)
  • d452f45 chore(deps): update dependency eslint-plugin-jest to v27.6.0 (#15635)
  • eb84a60 chore(deps): update dependency @​types/estree to v1.0.5 (#15625)
  • 2af23ee chore(deps): update dependency webpack to v5.89.0 (#15640)
  • 8f27c73 chore(deps): update dependency eslint-plugin-unicorn to v49 (#15642)
  • cdc5f5a chore(deps): update dependency webpack to v5.89.0 (#15639)
  • 14607ef chore(deps): update dependency eslint-plugin-n to v16.3.1 (#15636)
  • Additional commits viewable in compare view

Updates yaml from 2.2.2 to 2.3.4

Release notes

Sourced from yaml's releases.

v2.3.4

  • Do not throw for carriage return in tag shorthand (#501)

v2.3.3

  • Do not throw error on malformed URI escape in tag (#498)

v2.3.2

  • Fix docs typo (#489)
  • Do not require quotes for implicit keys with flow indicators (#494)
  • Update Prettier to v3 & update ESLint config

v2.3.1

  • Drop npm from package.json "engines" config (#476)

v2.3.0

This release corresponds with the release of yaml-types v0.2.0, an expanding library of custom tags or types for use with yaml.

This release contains no changes from v2.3.0-5, and the notes below include all changes from the v2.3.0-x prereleases.

Custom Tag Improvements

  • Add export of createNode() & createPair() to 'yaml/util' (#457)
  • Add static from() methods to simplify tag development, and otherwise make extending custom collections easier (#467)

TypeScript Improvements

  • Add a second optional generic type argument Strict to Document instances. (#441)
  • Add types exports for TypeScript (#463)
  • Export StringifyContext type from 'yaml/util' (#464)

Other New Features

  • Add a toJS(doc, options?) method to nodes (#451, #458)
  • Set explicit tag during createNode() for non-default tags (#464)

Bugfixes

  • Use correct argument order when stringifying flow collection comments (#443)
  • Improve first-line folding for block scalars (#422)

v2.3.0-5

  • Make extending custom collections easier (#467)
  • Fix corner case failure in error pretty-printer (CVE-2023-2251)

v2.3.0-4

New Features

  • Set explicit tag during createNode() for non-default tags (#464)
  • Export StringifyContext type from 'yaml/util' (#464)

... (truncated)

Commits

Updates deepl-node from 1.7.0 to 1.11.0

Release notes

Sourced from deepl-node's releases.

v1.11.0

Added

  • Add optional context parameter for text translation, that specifies additional context to influence translations, that is not translated itself.

Changed

  • Added notice in Readme that starting in 2024 the library will drop support for Node versions that are officially end-of-life.
  • Keep-Alive is now used by HTTP(S) agent, to reduce latency for subsequent API requests.

Fixed

  • CI: silence npm audit warnings in non-production dependencies due to currently-unresolvable vulnerability in semver <7.5.2.

  • Increase axios dependency to >=1.2.2, due to bug in axios v1.2.1.

  • Added supported glossary languages: Italian (it), Dutch (nl), Polish (pl), Portuguese (pt), Russian (ru) and Chinese (zh). The corresponding glossary language code TypeScript types are extended.

    Note: older library versions also support the new glossary language pairs, this update only adds new types.

  • Fixed typo in readme: createGlossaryWithCsv not createGlossaryFromCsv

v1.10.2

Fixed

  • Fixed erroneous version bump

v1.10.1

Fixed

  • Limit example typescript version to 5.0 due to Node 12 incompatibility

v1.10.0

Fixed

  • Changed document translation to poll the server every 5 seconds. This should greatly reduce observed document translation processing time.
  • Fix getUsage request to be a HTTP GET request, not POST.

v1.9.0

Added

  • Added platform and node version information to the user-agent string that is sent with API calls, along with an opt-out.
  • Added method for applications that use this library to identify themselves in API requests they make.

Fixed

  • Fixed proxy example code in README

v1.8.0

Added

  • New languages available: Korean ('ko') and Norwegian (bokmål) ('nb'). Add language code constants and tests.

    Note: older library versions also support the new languages, this update only adds new code constants.

v1.7.5

... (truncated)

Changelog

Sourced from deepl-node's changelog.

[1.11.0] - 2023-11-03

Added

  • Add optional context parameter for text translation, that specifies additional context to influence translations, that is not translated itself.

Changed

  • Added notice in Readme that starting in 2024 the library will drop support for Node versions that are officially end-of-life.
  • Keep-Alive is now used by HTTP(S) agent, to reduce latency for subsequent API requests.

Fixed

  • CI: silence npm audit warnings in non-production dependencies due to currently-unresolvable vulnerability in semver <7.5.2.

  • Increase axios dependency to >=1.2.2, due to bug in axios v1.2.1.

  • Added supported glossary languages: Italian (it), Dutch (nl), Polish (pl), Portuguese (pt), Russian (ru) and Chinese (zh). The corresponding glossary language code TypeScript types are extended.

    Note: older library versions also support the new glossary language pairs, this update only adds new types.

  • Fixed typo in readme: createGlossaryWithCsv not createGlossaryFromCsv

[1.10.2] - 2023-06-02

Fixed

  • Fixed erroneous version bump

[1.10.1] - 2023-06-02

Fixed

  • Limit example typescript version to 5.0 due to Node 12 incompatibility

[1.10.0] - 2023-06-01

Fixed

  • Changed document translation to poll the server every 5 seconds. This should greatly reduce observed document translation processing time.
  • Fix getUsage request to be a HTTP GET request, not POST.

[1.9.0] - 2023-03-22

Added

  • Added platform and node version information to the user-agent string that is sent with API calls, along with an opt-out.
  • Added method for applications that use this library to identify themselves in API requests they make.

Fixed

  • Fixed proxy example code in README

[1.8.0] - 2023-01-26

Added

  • New languages available: Korean ('ko') and Norwegian (bokmål) ('nb'). Add language code constants and tests.

... (truncated)

Commits
  • 82fe1f4 docs: Increase version to 1.11.0
  • c98d70d feat: add context parameter (alpha feature)
  • 2951e62 ci: raise memory limits to prevent OOM-kills
  • 2de1c81 ci: use harbor image registry
  • 3c38103 docs: fix typo in readme
  • ec58d44 docs: add notice that support for end-of-life Node versions will be dropped i...
  • 45032d5 fix: add Italian (it), Dutch (nl), Polish (pl), Portuguese (pt), Russian (ru)...
  • 042031f fix: fix local testing failures by allowing nock to also mock out localhost
  • 293b15f feat: HTTP(S) agent uses Keep-Alive for API requests
  • 3daaa71 chore: Action to add issues to GH project
  • Additional commits viewable in compare view

Updates dotenv from 16.0.3 to 16.3.1

Changelog

Sourced from dotenv's changelog.

16.3.1 (2023-06-17)

Added

  • Add missing type definitions for processEnv and DOTENV_KEY options. #756

16.3.0 (2023-06-16)

Added

  • Optionally pass DOTENV_KEY to options rather than relying on process.env.DOTENV_KEY. Defaults to process.env.DOTENV_KEY #754

16.2.0 (2023-06-15)

Added

  • Optionally write to your own target object rather than process.env. Defaults to process.env. #753
  • Add import type URL to types file #751

16.1.4 (2023-06-04)

Added

  • Added .github/ to .npmignore #747

16.1.3 (2023-05-31)

Removed

  • Removed browser keys for path, os, and crypto in package.json. These were set to false incorrectly as of 16.1. Instead, if using dotenv on the front-end make sure to include polyfills for path, os, and crypto. node-polyfill-webpack-plugin provides these.

16.1.2 (2023-05-31)

Changed

  • Exposed private function _configDotenv as configDotenv. #744

16.1.1 (2023-05-30)

Added

  • Added type definition for decrypt function

Changed

  • Fixed {crypto: false} in packageJson.browser

16.1.0 (2023-05-30)

Added

... (truncated)

Commits
  • b13ca7b 16.3.1
  • 9bcc2e7 Merge pull request #756 from motdotla/type-fix
  • 80fff4b Add type definition for DOTENV_KEY
  • 50163a1 update type file
  • 5c7d7f5 Add example demonstrating setting DOTENV_KEY
  • 76d3682 16.3.0
  • 80219ae Merge pull request #754 from motdotla/dotenv-key-option
  • dacd450 Add DOTENV_KEY to cli config and environment config options
  • f20e646 Add options.DOTENV_KEY
  • 5861f6a Add failing test demonstrating need for DOTENV_KEY option
  • Additional commits viewable in compare view

Updates piscina from 3.2.0 to 4.1.0

Release notes

Sourced from piscina's releases.

v4.1.0

What's Changed

New Contributors

Full Changelog: piscinajs/piscina@v4.0.0...v4.1.0

v4.0.0

What's Changed

Breaking Change

  • Drop support to Node.js <=14

Minor/Patch

... (truncated)

Commits
  • a773c0d chore: release v4.1.0 (#385)
  • bbaa84f chore(deps-dev): Bump @​types/node from 20.4.4 to 20.4.5 (#382)
  • 9b7c68d chore(deps-dev): Bump tap from 16.3.7 to 16.3.8 (#383)
  • 293e05b chore(deps-dev): Bump @​types/node from 20.4.2 to 20.4.4 (#381)
  • edf8dc4 fix: use CJS imports (#374)
  • 1273bda chore(deps-dev): Bump word-wrap from 1.2.3 to 1.2.4 (#379)
  • b0652b4 chore(deps-dev): Bump @​types/node from 20.4.1 to 20.4.2 (#377)
  • 2d49b63 feat: add needsDrain property (#368)
  • a5b4fa5 docs: remove promisify(setTimeout) from readme (#373)
  • f44c602 chore(deps-dev): Bump @​types/node from 20.3.3 to 20.4.1 (#372)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by metcoder95, a new releaser for piscina since your current version.


Updates ramda from 0.28.0 to 0.29.1

Release notes

Sourced from ramda's releases.

v0.29.1

Upgrade guide: ramda/ramda#3415

v0.29.0

Added

🆕 addIndexRight 🆕 isNotNil 🆕 swap 🆕 dropRepeatsBy

Removed

Deprecated

Changes

⚠️ propEq/pathEq parameter order

  • Documentation improvements
  • Transducer updates
  • Some support for types
  • Many more!

Thank you to everyone who contributed to this release!

Commits

Updates yargs from 17.6.0 to 17.7.2

Changelog

Sourced from yargs's changelog.

17.7.2 (2023-04-27)

Bug Fixes

  • do not crash completion when having negated options (#2322) (7f42848)

17.7.1 (2023-02-21)

Bug Fixes

  • address display bug with default sub-commands (#2303) (9aa2490)

17.7.0 (2023-02-13)

Features

  • add method to hide option extras (#2156) (2c144c4)
  • convert line break to whitespace for the description of the option (#2271) (4cb41dc)

Bug Fixes

  • copy the description of the option to its alias in completion (#2269) (f37ee6f)

17.6.2 (2022-11-03)

Bug Fixes

  • deps: update dependency yargs-parser to v21.1.1 (#2231) (75b4d52)
  • lang: typo in Finnish unknown argument singular form (#2222) (a6dfd0a)

17.6.1 (2022-11-02)

Bug Fixes

  • lang: fix "Not enough non-option arguments" message for the Czech language (#2242) (3987b13)
Commits
  • 3566b84 chore(main): release 17.7.2 (#2323)
  • 7f42848 fix: do not crash completion when having negated options (#2322)
  • 2b6ba31 chore(main): release 17.7.1 (#2304)
  • 9aa2490 fix: address display bug with default sub-commands (#2303)
  • 663c1b6 chore(main): release 17.7.0 (#2285)
  • 4cb41dc feat: convert line break to whitespace for the description of the option (#2271)
  • 7dc1086 test: mock additional hasColors method introduced in Node 16 (#2297)
  • f37ee6f fix: copy the description of the option to its alias in completion (#2269)
  • 1fd530a chore: add en strings for unknown command (#2262)
  • 2c144c4 feat: add method to hide option extras (#2156)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 13, 2023
Copy link

github-actions bot commented Nov 13, 2023

Report for the pull request #2180

🚀 Test the model from the website: https://nosgestesclimat.fr?PR=2180


🔧 Model compilation status

Task Status Message
Supported regions ✔️ Ø
Successfully compiled and optimized rules:
Expand
  • FR-fr
  • BE-fr
  • CA-fr
  • CH-fr
  • DE-fr
  • GF-fr
  • GP-fr
  • IT-fr
  • LU-fr
  • MQ-fr
  • PF-fr
  • PL-fr
  • PT-fr
  • RE-fr
  • TN-fr
  • TR-fr
  • UK-fr
  • YT-fr
  • FR-en
  • BE-en
  • CA-en
  • CH-en
  • DE-en
  • GF-en
  • GP-en
  • IT-en
  • LU-en
  • MQ-en
  • PF-en
  • PL-en
  • PT-en
  • RE-en
  • TN-en
  • TR-en
  • UK-en
  • YT-en
✔️ Ø
Personas compilation to JSON for fr ✔️ Ø
Personas compilation to JSON for en ✔️ Ø

🌐 Translation status

Rules

Language Nb. missing translations Status
en
Missing 15 rules ⬇️
  • logement . raccordement réseau de chaleur > titre
  • logement . chauffage . fioul kWh au litre > note
  • logement . chauffage . fioul kWh au litre > titre
  • services marchands > abréviation
  • services publics > abréviation
  • transport . vacances . caravane > note
  • transport . vacances . caravane . usage réel > titre
  • transport . vacances . caravane . construction amortie > titre
  • transport . vacances . caravane . construction > note
  • transport . vacances . caravane . construction > titre
  • transport . vacances . camping car . usage réel > titre
  • transport . vacances . camping car . construction amortie > titre
  • transport . vacances . camping car . construction > note
  • transport . vacances . camping car . construction > titre
  • transport . vacances . camping car . usage > titre
en
Missing 10 rules (not up-to-date) ⬇️
  • fioul kWh au litre
  • transport . vacances . camping car . empreinte
  • transport . vacances . camping car . empreinte . construction
  • transport . vacances . camping car . empreinte . construction amortie
  • transport . vacances . camping car . empreinte . usage
  • transport . vacances . camping car . empreinte . usage réel
  • transport . vacances . caravane . empreinte
  • transport . vacances . caravane . empreinte . construction
  • transport . vacances . caravane . empreinte . construction amortie
  • transport . vacances . caravane . empreinte . usage réel

Personas

Language Nb. missing translations Status
en Ø ✔️

You will find more information about the translation in the dedicated file.


👫 Personas changes

Test personas regression

Persona Total PR (kg CO2e) Total in prod. (kg CO2e) Δ (%)

Test model optimisation

Persona Total PR with optim. (kg CO2e) Total PR without optim. (kg CO2e) Δ (%)

Bumps the dev-dependencies group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [nodemon](https://github.com/remy/nodemon) | `2.0.20` | `3.0.1` |
| [prettier](https://github.com/prettier/prettier) | `2.7.1` | `3.1.0` |
| [yaml](https://github.com/eemeli/yaml) | `2.2.2` | `2.3.4` |
| [deepl-node](https://github.com/DeepLcom/deepl-node) | `1.7.0` | `1.11.0` |
| [dotenv](https://github.com/motdotla/dotenv) | `16.0.3` | `16.3.1` |
| [piscina](https://github.com/piscinajs/piscina) | `3.2.0` | `4.1.0` |
| [ramda](https://github.com/ramda/ramda) | `0.28.0` | `0.29.1` |
| [yargs](https://github.com/yargs/yargs) | `17.6.0` | `17.7.2` |


Updates `nodemon` from 2.0.20 to 3.0.1
- [Release notes](https://github.com/remy/nodemon/releases)
- [Commits](remy/nodemon@v2.0.20...v3.0.1)

Updates `prettier` from 2.7.1 to 3.1.0
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@2.7.1...3.1.0)

Updates `yaml` from 2.2.2 to 2.3.4
- [Release notes](https://github.com/eemeli/yaml/releases)
- [Commits](eemeli/yaml@v2.2.2...v2.3.4)

Updates `deepl-node` from 1.7.0 to 1.11.0
- [Release notes](https://github.com/DeepLcom/deepl-node/releases)
- [Changelog](https://github.com/DeepLcom/deepl-node/blob/main/CHANGELOG.md)
- [Commits](DeepLcom/deepl-node@v1.7.0...v1.11.0)

Updates `dotenv` from 16.0.3 to 16.3.1
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.0.3...v16.3.1)

Updates `piscina` from 3.2.0 to 4.1.0
- [Release notes](https://github.com/piscinajs/piscina/releases)
- [Commits](piscinajs/piscina@v3.2.0...v4.1.0)

Updates `ramda` from 0.28.0 to 0.29.1
- [Release notes](https://github.com/ramda/ramda/releases)
- [Changelog](https://github.com/ramda/ramda/blob/master/CHANGELOG.md)
- [Commits](ramda/ramda@v0.28.0...v0.29.1)

Updates `yargs` from 17.6.0 to 17.7.2
- [Release notes](https://github.com/yargs/yargs/releases)
- [Changelog](https://github.com/yargs/yargs/blob/main/CHANGELOG.md)
- [Commits](yargs/yargs@v17.6.0...v17.7.2)

---
updated-dependencies:
- dependency-name: nodemon
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: prettier
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: yaml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: deepl-node
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: dotenv
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: piscina
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: ramda
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: yargs
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/preprod/dev-dependencies-9011991cb1 branch from e6d201d to 0c86509 Compare November 14, 2023 08:24
@EmileRolley EmileRolley force-pushed the dependabot/npm_and_yarn/preprod/dev-dependencies-9011991cb1 branch from ae9d173 to 6933cc1 Compare November 14, 2023 11:09
@EmileRolley EmileRolley requested a review from Clemog November 14, 2023 11:13
@EmileRolley EmileRolley changed the title chore(deps): bump the dev-dependencies group with 8 updates fix: upgrade pkgs + fix some bugs in scripts Nov 14, 2023
@EmileRolley EmileRolley changed the title fix: upgrade pkgs + fix some bugs in scripts fix: upgrade pkgs + fix some bugs in scripts - [NGC-261] Nov 14, 2023
Copy link

@Clemog
Copy link
Contributor

Clemog commented Nov 14, 2023

Pas sur de bien comprendre ce qu'il faut checker au niveau des espaces ?

Copy link
Contributor

@Clemog Clemog left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Je ne sais pas exactement quoi tester mais tut fonctionne correctement j'ai l'impression !

@EmileRolley EmileRolley merged commit e52bf22 into preprod Nov 14, 2023
@EmileRolley EmileRolley deleted the dependabot/npm_and_yarn/preprod/dev-dependencies-9011991cb1 branch November 14, 2023 15:44
@Clemog Clemog mentioned this pull request Nov 20, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants