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(deps): update all non-major dependencies #406

Merged
merged 1 commit into from Jan 9, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 7, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@codemirror/view 6.7.1 -> 6.7.2 age adoption passing confidence dependencies patch
@commitlint/config-conventional (source) 17.3.0 -> 17.4.0 age adoption passing confidence devDependencies minor
@grpc/grpc-js (source) 1.8.0 -> 1.8.1 age adoption passing confidence dependencies patch
@mikro-orm/cli (source) 5.6.3 -> 5.6.4 age adoption passing confidence dependencies patch
@mikro-orm/core (source) 5.6.3 -> 5.6.4 age adoption passing confidence dependencies patch
@mikro-orm/mariadb (source) 5.6.3 -> 5.6.4 age adoption passing confidence dependencies patch
@mikro-orm/migrations (source) 5.6.3 -> 5.6.4 age adoption passing confidence dependencies patch
@mikro-orm/mysql (source) 5.6.3 -> 5.6.4 age adoption passing confidence dependencies patch
@mikro-orm/seeder (source) 5.6.3 -> 5.6.4 age adoption passing confidence dependencies patch
@sinclair/typebox 0.25.16 -> 0.25.17 age adoption passing confidence dependencies patch
@sinclair/typebox 0.25.16 -> 0.25.17 age adoption passing confidence devDependencies patch
ajv (source) 8.11.2 -> 8.12.0 age adoption passing confidence dependencies minor
babel-plugin-import 1.13.5 -> 1.13.6 age adoption passing confidence devDependencies patch
jest-extended 3.2.1 -> 3.2.2 age adoption passing confidence devDependencies patch
node 18.12.1 -> 18.13.0 age adoption passing confidence volta minor
pnpm (source) 7.21.0 -> 7.22.0 age adoption passing confidence packageManager minor
postcss (source) 8.4.20 -> 8.4.21 age adoption passing confidence devDependencies patch
random-words 1.2.0 -> 1.2.1 age adoption passing confidence dependencies patch

Release Notes

codemirror/view

v6.7.2

Compare Source

Bug fixes

Fix a regression where the cursor didn't restart its blink cycle when moving it with the pointer.

Even without a key property, measure request objects that are already scheduled will not be scheduled again by requestMeasure.

Fix an issue where keymaps incorrectly interpreted key events that used Ctrl+Alt modifiers to simulate AltGr on Windows.

Fix a bug where line decorations with a different class property would be treated as equal.

Fix a bug that caused drawSelection to not notice when it was reconfigured.

Fix a crash in the gutter extension caused by sharing of mutable arrays.

Fix a regression that caused touch selection on mobile platforms to not work in an uneditable editor.

Fix a bug where DOM events on the boundary between lines could get assigned to the wrong line.

conventional-changelog/commitlint

v17.4.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

grpc/grpc-node

v1.8.1

Compare Source

mikro-orm/mikro-orm

v5.6.4

Compare Source

Bug Fixes
  • core: improve inference of driver exported MikroORM.init() (497f274)
  • core: respect transaction context in em.execute() (832105d), closes #​3896
  • mongo: register serialized PK get/set pair only when explicitly requested (7004100), closes #​3900
  • mongo: respect field names in batch update conditions (3466c86), closes #​3897
Features
sinclairzx81/typebox

v0.25.17

Compare Source

ajv-validator/ajv

v8.12.0

Compare Source

ant-design/babel-plugin-import

v1.13.6

Compare Source

  • test: update expected files since babel upgraded bedae9f
  • feat: 新增SequenceExpression支持 (#​625) 54a94bc
jest-community/jest-extended

v3.2.2

Compare Source

What's Changed

New Contributors

Full Changelog: jest-community/jest-extended@v3.2.1...v3.2.2

nodejs/node

v18.13.0: 2023-01-05, Version 18.13.0 'Hydrogen' (LTS), @​danielleadams

Compare Source

Notable changes
Add support for externally shared js builtins

By default Node.js is built so that all dependencies are bundled into the Node.js binary itself. Some Node.js distributions prefer to manage dependencies externally. There are existing build options that allow dependencies with native code to be externalized. This commit adds additional options so that dependencies with JavaScript code (including WASM) can also be externalized. This addition does not affect binaries shipped by the Node.js project but will allow other distributions to externalize additional dependencies when needed.

Contributed by Michael Dawson in #​44376

Introduce File

The File class is part of the FileAPI. It can be used anywhere a Blob can, for example in URL.createObjectURL and FormData. It contains two properties that Blobs do not have: lastModified, the last time the file was modified in ms, and name, the name of the file.

Contributed by Khafra in #​45139

Support function mocking on Node.js test runner

The node:test module supports mocking during testing via a top-level mock
object.

test('spies on an object method', (t) => {
  const number = {
    value: 5,
    add(a) {
      return this.value + a;
    },
  };
  t.mock.method(number, 'add');

  assert.strictEqual(number.add(3), 8);
  assert.strictEqual(number.add.mock.calls.length, 1);
});

Contributed by Colin Ihrig in #​45326

Other notable changes
  • build:
    • disable v8 snapshot compression by default (Joyee Cheung) #​45716
  • crypto:
    • update root certificates (Luigi Pinca) #​45490
  • deps:
    • update ICU to 72.1 (Michaël Zasso) #​45068
  • doc:
    • add doc-only deprecation for headers/trailers setters (Rich Trott) #​45697
    • add Rafael to the tsc (Michael Dawson) #​45691
    • deprecate use of invalid ports in url.parse (Antoine du Hamel) #​45576
    • add lukekarrys to collaborators (Luke Karrys) #​45180
    • add anonrig to collaborators (Yagiz Nizipli) #​45002
    • deprecate url.parse() (Rich Trott) #​44919
  • lib:
    • drop fetch experimental warning (Matteo Collina) #​45287
  • net:
    • (SEMVER-MINOR) add autoSelectFamily and autoSelectFamilyAttemptTimeout options (Paolo Insogna) #​44731
  • src:
    • (SEMVER-MINOR) add uvwasi version (Jithil P Ponnan) #​45639
    • (SEMVER-MINOR) add initial shadow realm support (Chengzhong Wu) #​42869
  • test_runner:
    • (SEMVER-MINOR) add t.after() hook (Colin Ihrig) #​45792
    • (SEMVER-MINOR) don't use a symbol for runHook() (Colin Ihrig) #​45792
  • tls:
    • (SEMVER-MINOR) add "ca" property to certificate object (Ben Noordhuis) #​44935
    • remove trustcor root ca certificates (Ben Noordhuis) #​45776
  • tools:
    • update certdata.txt (Luigi Pinca) #​45490
  • util:
    • add fast path for utf8 encoding (Yagiz Nizipli) #​45412
    • improve textdecoder decode performance (Yagiz Nizipli) #​45294
    • (SEMVER-MINOR) add MIME utilities (#​21128) (Bradley Farias) #​21128
Commits

Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 90ad76b to f5e4804 Compare January 7, 2023 13:17
@github-actions
Copy link
Contributor

github-actions bot commented Jan 7, 2023

PR Preview Action v1.2.0
Preview removed because the pull request was closed.
2023-01-09 03:08 UTC

@codecov-commenter
Copy link

Codecov Report

Base: 64.76% // Head: 64.67% // Decreases project coverage by -0.09% ⚠️

Coverage data is based on head (f5e4804) compared to base (789b791).
Patch coverage: 57.89% of modified lines in pull request are covered.

Additional details and impacted files
@@            Coverage Diff             @@
##           master     #406      +/-   ##
==========================================
- Coverage   64.76%   64.67%   -0.10%     
==========================================
  Files         104      104              
  Lines        2949     2958       +9     
  Branches      367      370       +3     
==========================================
+ Hits         1910     1913       +3     
- Misses        991      996       +5     
- Partials       48       49       +1     
Impacted Files Coverage Δ
apps/portal-server/src/clusterops/slurm/app.ts 16.05% <0.00%> (ø)
apps/portal-server/src/utils/turbovnc.ts 83.33% <50.00%> (-2.88%) ⬇️
apps/auth/src/auth/ldap/createUser.ts 64.06% <64.28%> (-3.80%) ⬇️

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report at Codecov.
📢 Do you have feedback about the report comment? Let us know in this issue.

@ddadaal ddadaal merged commit 1e8a8f8 into master Jan 9, 2023
@ddadaal ddadaal deleted the renovate/all-minor-patch branch January 9, 2023 03:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants