Skip to content

chore(deps): update patch dependencies (patch) - #148

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/patch-patch-dependencies
Open

chore(deps): update patch dependencies (patch)#148
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/patch-patch-dependencies

Conversation

@renovate

@renovate renovate Bot commented Nov 3, 2021

Copy link
Copy Markdown

This PR contains the following updates:

Package Change Age Confidence
@ember/test-helpers ^2.9.3^2.9.6 age confidence
autoprefixer ^10.4.14^10.4.27 age confidence
ember-auto-import (source) ^2.6.1^2.6.3 age confidence
ember-cli-code-coverage (source) ^2.0.0^2.0.3 age confidence
ember-cli-dependency-checker ^3.3.1^3.3.3 age confidence
eslint-plugin-ember ^11.4.7^11.4.9 age confidence
eslint-plugin-prettier ^4.2.1^4.2.5 age confidence
micromatch ^4.0.4^4.0.8 age confidence
prettier (source) ^2.8.4^2.8.8 age confidence
pretty-quick ^3.1.3^3.1.4 age confidence
rimraf ^4.4.0^4.4.1 age confidence
webpack ^5.76.1^5.76.3 age confidence

cc @tzellman


Release Notes

emberjs/ember-test-helpers (@​ember/test-helpers)

v2.9.6: Release 2.9.6

Compare Source

Republish with built assets, as v2.9.5 did not have them.

v2.9.5: Release 2.9.5

Compare Source

🐛 Bug Fix
Committers: 1

v2.9.4: Release 2.9.4

Compare Source

🐛 Bug Fix
Committers: 1
postcss/autoprefixer (autoprefixer)

v10.4.27

Compare Source

  • Removed development key from package.json.

v10.4.26

Compare Source

  • Reduced package size.

v10.4.25

Compare Source

  • Fixed broken gradients on CSS Custom Properties (by @​serger777).

v10.4.24

Compare Source

  • Made Autoprefixer a little faster (by @​Cherry).

v10.4.23

Compare Source

v10.4.22

Compare Source

  • Fixed stretch prefixes on new Can I Use database.
  • Updated fraction.js.

v10.4.21

Compare Source

v10.4.20

Compare Source

  • Fixed fit-content prefix for Firefox.

v10.4.19

Compare Source

  • Removed end value has mixed support, consider using flex-end warning
    since end/start now have good support.

v10.4.18

Compare Source

  • Fixed removing -webkit-box-orient on -webkit-line-clamp (@​Goodwine).

v10.4.17

Compare Source

  • Fixed user-select: contain prefixes.

v10.4.16

Compare Source

  • Improved performance (by Romain Menke).
  • Fixed docs (by Christian Oliff).

v10.4.15

Compare Source

  • Fixed ::backdrop prefixes (by 一丝).
  • Fixed docs (by Christian Oliff).
embroider-build/ember-auto-import (ember-auto-import)

v2.6.3

Compare Source

  • BUGFIX: the babel-plugin-ember-template-compilation bugfix in the previous release was missing an explicit dependency declaration, so it didn't work 100% of the time. Fix by @​mansona.

v2.6.2

Compare Source

  • BUGFIX: automatically detect when our module shims need AMD dependencies. This eliminates the previous earlyBootSet manual workaround.
  • BUGFIX: use babel-plugin-ember-template-compilation on new-enough ember versions by @​candunaj
  • INTERNAL: update tests for latest ember canary
  • BUGFIX: Fix wrong detection of ember-source version for earlyBootSet by @​simonihmig
kategengler/ember-cli-code-coverage (ember-cli-code-coverage)

v2.0.3: Release 2.0.3

Compare Source

🐛 Bug Fix
  • ember-cli-code-coverage
🏠 Internal
Committers: 2

v2.0.2: Release 2.0.2

Compare Source

🐛 Bug Fix
🏠 Internal
Committers: 3
adopted-ember-addons/ember-cli-dependency-checker (ember-cli-dependency-checker)

v3.3.3

ember-cli-dependency-checker 3.3.3 (patch)

🐛 Bug Fix
  • ember-cli-dependency-checker
🏠 Internal
Committers: 2

v3.3.2

Compare Source

ember-cli/eslint-plugin-ember (eslint-plugin-ember)

v11.4.9

Compare Source

🐛 Bug Fix
Committers: 1

v11.4.8

Compare Source

🐛 Bug Fix
  • #​1801 Fix issue with token mapping for lint errors on template tokens in gjs/gts files by displaying eslint error on the opening <template> tag (@​hmajoros)
  • #​1788 Fix no-array-prototype extensions undefined error from trying to access callee from non-CallExpression (@​canrozanes)
  • #​1795 refactor glimmer post-process, better handle template tag (@​hmajoros)
Committers: 2
prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v4.2.5

Compare Source

republish the v4 version

Full Changelog: prettier/eslint-plugin-prettier@v4.2.4...v4.2.5

v4.2.4

Compare Source

republish the v4 version

Full Changelog: prettier/eslint-plugin-prettier@v4.2.1...v4.2.4

micromatch/micromatch (micromatch)

v4.0.8

Compare Source

v4.0.7

Compare Source

  • this is basically v4.0.5, with some README updates
  • it is vulnerable to CVE-2024-4067
  • Updated braces to v3.0.3 to avoid CVE-2024-4068
  • does NOT break API compatibility

v4.0.6

Compare Source

  • Added hasBraces to check if a pattern contains braces.
  • Fixes CVE-2024-4067
  • BREAKS API COMPATIBILITY
  • Should be labeled as a major release, but it's not.
prettier/prettier (prettier)

v2.8.8

Compare Source

This version is a republished version of v2.8.7.
A bad version was accidentally published and it can't be unpublished, apologies for the churn.

v2.8.7

Compare Source

diff

Allow multiple decorators on same getter/setter (#​14584 by @​fisker)
// Input
class A {
  @decorator()
  get foo () {}
  
  @decorator()
  set foo (value) {}
}

// Prettier 2.8.6
SyntaxError: Decorators cannot be applied to multiple get/set accessors of the same name. (5:3)
  3 |   get foo () {}
  4 |   
> 5 |   @decorator()
    |   ^^^^^^^^^^^^
  6 |   set foo (value) {}
  7 | }

// Prettier 2.8.7
class A {
  @decorator()
  get foo() {}

  @decorator()
  set foo(value) {}
}

v2.8.6

Compare Source

diff

Allow decorators on private members and class expressions (#​14548 by @​fisker)
// Input
class A {
  @decorator()
  #privateMethod () {}
}

// Prettier 2.8.5
SyntaxError: Decorators are not valid here. (2:3)
  1 | class A {
> 2 |   @decorator()
    |   ^^^^^^^^^^^^
  3 |   #privateMethod () {}
  4 | }

// Prettier 2.8.6
class A {
  @decorator()
  #privateMethod() {}
}

v2.8.5

Compare Source

diff

Support TypeScript 5.0 (#​14391 by @​fisker, #​13819 by @​fisker, @​sosukesuzuki)

TypeScript 5.0 introduces two new syntactic features:

  • const modifiers for type parameters
  • export type * declarations
Add missing parentheses for decorator (#​14393 by @​fisker)
// Input
class Person {
  @(myDecoratorArray[0])
  greet() {}
}

// Prettier 2.8.4
class Person {
  @myDecoratorArray[0]
  greet() {}
}

// Prettier 2.8.5
class Person {
  @(myDecoratorArray[0])
  greet() {}
}
Add parentheses for TypeofTypeAnnotation to improve readability (#​14458 by @​fisker)
// Input
type A = (typeof node.children)[];

// Prettier 2.8.4
type A = typeof node.children[];

// Prettier 2.8.5
type A = (typeof node.children)[];
Support max_line_length=off when parsing .editorconfig (#​14516 by @​josephfrazier)

If an .editorconfig file is in your project and it sets max_line_length=off for the file you're formatting,
it will be interpreted as a printWidth of Infinity rather than being ignored
(which previously resulted in the default printWidth of 80 being applied, if not overridden by Prettier-specific configuration).

<!-- Input -->
<div className='HelloWorld' title={`You are visitor number ${ num }`} onMouseOver={onMouseOver}/>

<!-- Prettier 2.8.4 -->
<div
  className="HelloWorld"
  title={`You are visitor number ${num}`}
  onMouseOver={onMouseOver}
/>;

<!-- Prettier 2.8.5 -->
<div className="HelloWorld" title={`You are visitor number ${num}`} onMouseOver={onMouseOver} />;
prettier/pretty-quick (pretty-quick)

v3.1.4

Compare Source

Patch Changes
isaacs/rimraf (rimraf)

v4.4.1

Compare Source

webpack/webpack (webpack)

v5.76.3

Compare Source

Bugfixes

New Contributors

Full Changelog: webpack/webpack@v5.76.2...v5.76.3

v5.76.2

Compare Source

Bugfixes

  • Fix bug where a missing semicolon in generated bundle output for publicPathRuntime would cause concatenated runtime errors by @​snitin315 in #​16811
  • Remove redundant semicolons generated in bundle runtime code after onScriptComplete function by @​ahaoboy in #​16347
  • Fix bug where RealContentHashPlugin was not respecting output.hashSalt's ability to cause a force recalculation of [contenthash] for emitted assets by @​dmichon-msft #​16789

Performance

  • Improve memory and runtime performance of sourcemaps via hoisting Regular Expression literals to stored variables by @​TheLarkInn in #​15722
  • Correct v8 deoptimization in ModuleGraph due to instance property declarations occurring outside of constructor by @​snitin315 in #​16830

Developer Experience

New Contributors

Full Changelog: webpack/webpack@v5.76.1...v5.76.2


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the deps label Nov 3, 2021
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch from 12bef96 to 278af0a Compare November 4, 2021 19:30
@renovate renovate Bot changed the title chore(deps): update dependency ember-source to ~3.28.5 chore(deps): update dependency ember-source to ~3.28.6 Nov 4, 2021
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch from 278af0a to b13239d Compare November 16, 2021 09:48
@renovate renovate Bot changed the title chore(deps): update dependency ember-source to ~3.28.6 chore(deps): update patch dependencies (patch) Nov 16, 2021
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch from b13239d to 2dd3ebe Compare November 23, 2021 08:09
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch 3 times, most recently from 2db9e30 to 93b082e Compare December 5, 2021 19:37
@renovate renovate Bot changed the title chore(deps): update patch dependencies (patch) fix(deps): update patch dependencies (patch) Dec 5, 2021
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch from 93b082e to 4df6262 Compare December 14, 2021 22:45
@renovate renovate Bot changed the title fix(deps): update patch dependencies (patch) chore(deps): update patch dependencies (patch) Dec 14, 2021
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch 5 times, most recently from e4a4ec9 to 2676ff7 Compare December 22, 2021 14:25
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch from 2676ff7 to 4c28b1b Compare January 5, 2022 15:11
@renovate renovate Bot changed the title chore(deps): update patch dependencies (patch) chore(deps): update patch dependencies (patch) - autoclosed Jan 5, 2022
@renovate renovate Bot closed this Jan 5, 2022
@renovate
renovate Bot deleted the renovate/patch-patch-dependencies branch January 5, 2022 15:39
@renovate renovate Bot changed the title chore(deps): update patch dependencies (patch) - autoclosed chore(deps): update patch dependencies (patch) Jan 7, 2022
@renovate renovate Bot reopened this Jan 7, 2022
@renovate
renovate Bot restored the renovate/patch-patch-dependencies branch January 7, 2022 16:05
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch from 4c28b1b to eb3de14 Compare January 7, 2022 16:06
@renovate renovate Bot changed the title chore(deps): update patch dependencies (patch) chore(deps): update dependency autoprefixer to ^10.4.2 Jan 7, 2022
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch from eb3de14 to 2425eb8 Compare January 7, 2022 17:25
@renovate renovate Bot changed the title chore(deps): update dependency autoprefixer to ^10.4.2 chore(deps): update patch dependencies (patch) Jan 7, 2022
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch 2 times, most recently from e35a80b to 1dd84b5 Compare January 13, 2022 21:33
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch 2 times, most recently from 40cc9a2 to 231ef5b Compare January 28, 2022 20:53
@renovate renovate Bot changed the title chore(deps): update dependency tailwindcss to ^3.0.17 chore(deps): update dependency tailwindcss to ^3.0.18 Jan 28, 2022
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch from 231ef5b to 4b95cd5 Compare February 1, 2022 15:26
@renovate renovate Bot changed the title chore(deps): update dependency tailwindcss to ^3.0.18 chore(deps): update patch dependencies (patch) Feb 1, 2022
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch 4 times, most recently from c94e744 to 8d6d174 Compare February 11, 2022 16:56
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch 2 times, most recently from 6d0552c to 074b171 Compare February 16, 2022 12:02
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch 2 times, most recently from e32428a to 6e94d82 Compare March 16, 2022 10:26
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch from 6e94d82 to 7609477 Compare March 26, 2022 12:18
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch from 7609477 to acf2ea8 Compare April 25, 2022 02:11
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch from acf2ea8 to c154e3a Compare May 16, 2022 01:04
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch from c154e3a to f7ade6f Compare June 18, 2022 16:32
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch from f7ade6f to b1cf9fd Compare September 25, 2022 19:16
@renovate renovate Bot changed the title chore(deps): update patch dependencies (patch) fix(deps): update patch dependencies (patch) Oct 4, 2022
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch from b1cf9fd to bb6bda5 Compare October 4, 2022 13:10
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch 2 times, most recently from 330bede to 62002cf Compare October 14, 2022 15:47
@renovate renovate Bot changed the title fix(deps): update patch dependencies (patch) chore(deps): update patch dependencies (patch) Oct 14, 2022
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch 2 times, most recently from 4a37098 to db81cc1 Compare October 23, 2022 04:28
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch from db81cc1 to 5b3291c Compare October 27, 2022 21:16
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch from 5b3291c to 642ea5b Compare November 4, 2022 18:49
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch from 642ea5b to ca86a2d Compare November 22, 2022 18:10
@renovate
renovate Bot force-pushed the renovate/patch-patch-dependencies branch from ca86a2d to 0afd8e4 Compare November 30, 2022 07:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants