Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

patch: Update external-non-major #6632

Merged
3 commits merged into from
Jun 29, 2021
Merged

patch: Update external-non-major #6632

3 commits merged into from
Jun 29, 2021

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 12, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
howler (source) ^2.2.1 -> ^2.2.2 age adoption passing confidence
monaco-editor ^0.20.0 -> ^0.25.2 age adoption passing confidence
simple-git-hooks ^2.4.1 -> ^2.5.1 age adoption passing confidence
typescript (source) ^4.2.4 -> ^4.3.4 age adoption passing confidence

Release Notes

goldfire/howler.js

v2.2.2

Compare Source

The README has been updated with more examples and various clarifications. PRs/issues with suggestions for further improvements are appreciated.

  • CHANGED Include keydown event when unlocking audio (#​1417).
  • CHANGED The audio state is changed to loading while the player is buffering (#​1444).
  • FIXED Looping sounds wouldn't always work correctly in recent versions of Firefox desktop (#​1445).
  • FIXED Disabled WebM in Safari 14 until bug in Safari is resolved (#​1476).
  • FIXED Error when calling seek() on audio that hasn't loaded (#​1423).
  • FIXED Before a sound had loaded, calling pause() after seek() didn't have the intended behavior (#​1439).
Microsoft/monaco-editor

v0.25.2

Compare Source

v0.25.1

Compare Source

v0.25.0

Compare Source

  • added a new feature inlineSuggest that features a provider api and new settings.
  • added suggest.preview to toggle previewing the selected suggest item.
  • added suggest.showDeprecated
  • CSS/HTML: added support for custom data format
  • HTML: added registerHTMLLanguageService
Breaking changes
  • renamed inlineHints to inlayHints.
Thank you

Contributions to monaco-editor:

Contributions to monaco-languages:

Contributions to monaco-typescript:

v0.24.0

Compare Source

  • added a setting domReadOnly which controls if the <textarea> used for editor input should have the DOM readonly attribute
  • added a setting useShadowDOM which can be set to false to prevent the editor from using shadow DOM in its implementation (e.g. for the contextmenus).
  • added a settings autoClosingDelete that controls how backspace works inside auto-closing pairs.
  • added DiagnosticsOptions.onlyVisible for TypeScript which limits the computation of diagnostics to only visible text models.
  • fixed issue where the editor would not load in Safari 13.
Breaking changes
  • EditorAutoClosingOvertypeStrategy has been renamed to EditorAutoClosingEditStrategy
Thank you

Contributions to monaco-editor:

Contributions to monaco-editor-webpack-plugin:

Contributions to monaco-languages:

Contributions to monaco-typescript:

v0.23.0

Compare Source

Thank you

Contributions to monaco-languages:

Contributions to monaco-typescript:

v0.22.3

Compare Source

Fixes a regression where symbol icons used in suggestions or quick outline were missing colors (see microsoft/monaco-editor#2329).

v0.22.2

Compare Source

Fixes a regression where under certain webpack configurations process.nextTick could be used without explicitly checking for it being defined (see microsoft/monaco-editor#2328).

v0.22.1

Compare Source

Fixes a regression where format commands would no longer work (see microsoft/monaco-editor#2327).

v0.22.0

Compare Source

New & Noteworthy
  • new grammars for Modula-3 and ECL (Enterprise Control Language).
  • added monaco.editor.onDidChangeMarkers to listen for marker changes.
  • added monaco.editor.registerCommand to register global commands.
  • added monaco.languages.setColorMap to allow defining the color map used for tokenization.
  • added IMonarchLanguage.includeLF to allow matching against the \n at the end of each line.
  • new editor option stickyTabStops to make interacting with spaces in indentation behave more like interacting with tabs.
Breaking changes
  • The ESM version of the editor will no longer define a global monaco object. You can define global.MonacoEnvironment = { globalAPI: true } if you want for the editor to define this global object.
  • Renamed OnTypeRenameProvider to LinkedEditingRangeProvider and related methods like the editor option renameOnType (now linkedEditing), registerOnTypeRenameProvider (now registerLinkedEditingRangeProvider), etc.
  • Renamed OnEnterRule.oneLineAboveText to OnEnterRule.previousLineText
Thank you

Contributions to monaco-editor:

Contributions to monaco-languages:

Contributions to monaco-typescript:

Contributions to monaco-css:

v0.21.3

Compare Source

Fixes a regression in suggestions where the browser clipboard API would be accessed by incomplete suggestion lists (see microsoft/vscode@96d6184).

v0.21.2

Compare Source

Fixes a regression in monaco-css.

Breaking changes
  • monaco.uri methods file, from, isUri, joinPath, parse, revive are now static. Changing new monaco.uri.method to monaco.uri.method resolves 'TypeError: monaco.Uri.file is not a constructor at...' errors.

v0.21.1

Compare Source

Fixes a few regressions.

Thank you

Contributions to monaco-html:

Contributions to monaco-languages:

Contributions to monaco-typescript:

v0.21.0

Compare Source

New & Noteworthy
  • Added Paste in the context menu in browsers which support the clipboard API.
  • Many improvements in monaco-typescript: support for "deprecated" tags, API to participate in the web worker, improved lib.d.ts resolving.
  • New tokenization support for: Julia, Scala, Lexon, Terraform HCL, Dart, Systemverilog.
  • New semantic tokens provider sample on the playground.
  • New shadow dom sample
  • New overflowWidgetsDomNode constructor option to pass in a parent for overflowing widgets.
  • New minimap.size option: proportional, fill, fit.
  • New OnTypeRename provider and option renameOnType.
  • Fixed issue where cross-origin web workers were not working on Safari.
  • Fixed many issues around embedding the editor in iframes or in shadow dom.
  • Fixed issue with automaticLayout.
  • Fixed issue with scrolling speed on Firefox.
  • New options: tabIndex, scrollPredominantAxis, columnSelection, padding, unfoldOnClickAfterEndOfLine, renderLineHighlightOnlyWhenFocus, definitionLinkOpensInPeek, showDeprecated, comments.ignoreEmptyLines, find.cursorMoveOnType, find.loop.
  • New diff editor options: originalCodeLens, modifiedCodeLens.
  • Changed options: rulers can now define different colors, renderWhitespace can now be trailing.
Breaking changes
  • CompletionItemLabel.signature has been renamed to CompletionItemLabel.parameters.
  • The signature of CompletionItemProvider.resolveCompletionItem has changed.
  • IMarker.code.link was renamed to IMarker.code.target.
  • IMarkerData.code.link was renamed to IMarkerData.code.target.
  • EditorLayoutInfo has been restructured.
Thank you

Contributions to monaco-editor:

Contributions to monaco-typescript:

Contributions to monaco-json:

Contributions to monaco-languages:

toplenboren/simple-git-hooks

v2.5.1

Compare Source

  • Always use LF as EOL symbol (fix a 🐛 when hooks are created on windows and then run on unix)
  • Always create the hook directory (fix a 🐛 with SourceTree and GitHub Desktop)
Microsoft/TypeScript

v4.3.4

Compare Source

This release

  • adds an optional getCustomTransformers method to the SolutionBuilderHost* APIs
  • uses the transforms given by getCustomTransformers in Builder Program instances when running emit() methods in cases where customTransforms are not given.

See the change for more details

v4.3.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v4.3.2

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


Configuration

📅 Schedule: "every weekend" (UTC).

🚦 Automerge: Disabled due to failing status checks.

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

👻 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 WhiteSource Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jun 12, 2021
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Jun 12, 2021
renovate-approve[bot]
renovate-approve bot previously approved these changes Jun 12, 2021
@joshbwlng
Copy link
Collaborator

@balena-ci rebase

@ghost ghost force-pushed the renovate/external-non-major branch from 24509c2 to b21d70d Compare June 12, 2021 06:16
@renovate renovate bot force-pushed the renovate/external-non-major branch 2 times, most recently from 3d2507d to efd247c Compare June 13, 2021 07:24
@joshbwlng
Copy link
Collaborator

joshbwlng commented Jun 13, 2021

@grahammcculloch Just realized we have @babel/preset-env installed as both a dependency and a dev dependency for apps/ui... Am I right in thinking this only needs to be a dev dependency, possibly along with other babel dependencies?

@grahammcculloch
Copy link
Contributor

@joshbwlng I think you're right. Should be easy to tell if you make them all dev dependencies and see if CI passes.

@renovate renovate bot force-pushed the renovate/external-non-major branch 5 times, most recently from 00910e3 to 34aa395 Compare June 14, 2021 00:54
@joshbwlng joshbwlng marked this pull request as draft June 14, 2021 01:10
@ghost ghost dismissed stale reviews from renovate-approve-2 and renovate-approve June 14, 2021 01:10

Approval reviews not allowed in Draft PRs

@renovate renovate bot force-pushed the renovate/external-non-major branch 11 times, most recently from 22064ef to 94d5af8 Compare June 21, 2021 22:46
@joshbwlng joshbwlng marked this pull request as ready for review June 21, 2021 23:17
@joshbwlng
Copy link
Collaborator

@balena-ci retest

@renovate renovate bot force-pushed the renovate/external-non-major branch 19 times, most recently from ec729f3 to f6df12d Compare June 27, 2021 23:49
@grahammcculloch
Copy link
Contributor

@balena-ci retest

renovate-bot and others added 3 commits June 29, 2021 04:52
Older versioned resulted in build errors.

Change-type: patch
Signed-off-by: Graham McCulloch <graham@balena.io>
Change-type: patch
Signed-off-by: Graham McCulloch <graham@balena.io>
@grahammcculloch
Copy link
Contributor

@balena-ci rebase

@ghost ghost force-pushed the renovate/external-non-major branch from 45c40a6 to 5580534 Compare June 29, 2021 06:12
@jellyfish-test-bot
Copy link

Ship shape and ready to sail!

@ghost ghost merged commit 3438afa into master Jun 29, 2021
@ghost ghost deleted the renovate/external-non-major branch June 29, 2021 07:09
This pull request was closed.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants