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 dependency opensheetmusicdisplay to v1.8.9 #792

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Nov 17, 2021

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
opensheetmusicdisplay (source) 1.2.0 -> 1.8.9 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

opensheetmusicdisplay/opensheetmusicdisplay (opensheetmusicdisplay)

v1.8.9

Compare Source

Bug Fixes
  • Breath Mark: Fix breath mark beyond measure boundary when placed at end of measure in certain cases (#​1548) (765c5dd)
  • Cursor: Fix osmd.cursor.Iterator.CurrentRelativeInMeasureTimestamp not updated when moving/updating cursor (33b54dc)
  • Cursor: osmd.cursor.hidden is now true instead of undefined after first cursor init + render. (30b5ff1)
  • Drawing range: Fix rendering from measure number 1 instead of 2 when drawFromMeasureNumber 2 set if piece has pickup measure. (2352e27)
  • Drawing range: Fix rendering up to measure number 9 instead of 10 when drawUpToMeasureNumber 10 set if piece has pickup measure. (3ec051c)
  • Fingering: Fix fingering order reversed for left fingerings after first note (rules.FingeringPosition = 2) (#​1538, #​1442, #​406) (875d568)
  • GetNearestStaffEntry: Fix sometimes a non-staffentry being returned (e.g. voice entry) (c86587e)
  • Layout: Fix unison notes not displaced, e.g. causing accidental overlap (c4c675a)
  • MeasureNumber: Fix measure.MeasureNumber repeating for two measures late in a piece when they have implicit (pickup) measures later on (4ac1a0a)
  • SingleLine: Fix measure bounding boxes and thus cursor type 3 (measure highlight) for RenderSingleHorizontalStaffline = true (#​1533, PR #​1244) (e190090)
  • Tabs: Add option not to clear transparent rectangle around tab notes in case Renderer handles transparent as black (#​1514) (3fb0e7f)
  • Tuplets: Fix cursor.next() going through complex tuplets in wrong order (#​1540), fix display (x-pos) for certain complex tuplets (#​1478) (57b3acf)
Features
  • Cursor: Add cursor.Dispose(), make osmd.cursorsOptions public and add jsdoc, which simplifies adding and removing cursors (bba460c)
  • Measure: Add osmd.GraphicSheet.findGraphicalMeasureByMeasureNumber() (7c5a0ff)
  • Measure: Add Sheet.MeasureWidthFactor (scales all measure widths) (#​1534, PR #​1536). Parse score-partwise.osmdMeasureWidthFactor from XML. (0c79a49)
  • Multi-Measure Rest: Improve bounding box for staffentry in multi-measure rest (MultiRestMeasure) (#​506). Helps click events. (a9cad37)
  • OnXMLRead: Make the function public, add definition and jsdoc. (allows to modify XML before parsing) (3722cc6)
  • osmd.GraphicSheet: Add generic GetNearestObject(clickPos) method, e.g. for GraphicalMeasure (2de6b62)
  • SVG: Add SVG groups for lyrics, lyrics dashes (#​1531) (742a232)
  • SVG: Add SVG groups for stafflines, measures, instrument braces and brackets (groups) (#​1531) (1b264bc)
  • SVG: Added SVGElement property to GraphicalLine, save node from drawLine in drawContinuousDynamic (#​1542) (8a890bf)
  • SVG: Save SVGElement for glissando line in drawLine usage (PR #​1542), rename to SVGElement (capital E) (8495b7e)
  • WidthFactor: Add SourceMeasure.widthFactor, parse osmdWidthFactor attribute from xml (#​1534, PR #​1535). Enables shortening individual measures. (0dc770b)

v1.8.8

Compare Source

Bug Fixes
  • Barline: Add missing double bar line when location="right" is not supplied in MusicXML (#​1522), which is non-mandatory. (b1ed898)
  • Crescendo: Fix wedge offset not used, changing end points of wedges (#​1525) (decrescendo too) (7226993)
  • Cursor: Fix color not updated after setting osmd.cursor.CursorOptions.color and calling update(). Add osmd.Cursor getter (f78ff0e)
  • MXL: Fix Sibelius-exported MXL files with UTF-16 encoding erroring on load due to a limitation in JSZip (#​1523). (1f11be7)

v1.8.7

Compare Source

Bug Fixes
  • Fraction: Return a minimum GCD of 1, preventing NaNs and wrong note x-positions in rare complex rhythms (#​1511). Prevent a rare infinite loop that could have otherwise resulted after this change. (84b94c3)
  • Lyricist: Fix collision for very long lyricist name with other elements (rare), apply same default offset as for composer (likely no effect if composer is present too, because of y-alignment) (#​1513) (764890c)
  • Tabs: Fix tab tuplet (triplet) x-alignment with classical staffs/instruments vertically, fix EngravingRules.TabBeamsRendered = false edge case showing beams (#​1515). Add some EngravingRules. (341f523)
  • Tabs: Fix wrong tab number background color in dark mode / when PageBackgroundColor set (#​1514), export tab background as white instead of transparent by default for PNG (11c4446)

v1.8.6

Compare Source

Bug Fixes
  • Crescendo: Fix wrong wedge startX in certain multi-instrument scores (further) (#​1480, PR #​1506) (c2a6def)
  • PageFormat: Fix page 2+ system labels (e.g. part abbreviation) not rendered. Add EngravingRule RenderSystemLabelsAfterFirstPage (PR #​1507). (does not affect default endless format) (70013be)
  • Subtitle + Composer: Read and display multiline subtitles and composer lines from XML credit-words tags correctly (PR #​1508). Add EngravingRule SheetComposerSubtitleUseLegacyParsing (71e9576)

Note that to restore the old behavior (subtitle and composer as in OSMD <= 1.8.5), you can use the deprecated option osmd.EngravingRules.SheetComposerSubtitleUseLegacyParsing = true, but we recommend adapting your MusicXML files instead, as this option might be removed soon.

  • SVG Export: Fix key signature rendered black instead of invisible in some systems by adding visibility="hidden" to the SVG group. (ec6c209)
  • SVG Export: Fix time signature potentially rendered black instead of invisible in some systems by adding visibility="hidden" to the SVG group. (354d92d)
  • Test: Fix karma-webpack 5.0.1 incompatibility (npm test). Delete karma-webpack patch (dev dependency) (PR #​1509) (7fa22db)
Features

See PR #​1474 for settings you can fine-tune.

  • Note: add ToStringShortGet and ToStringShort() to Note and GraphicalNote (#​1510), shortcut for Pitch.ToStringShort (4221ce3)
  • Pitch: Add ToStringShort method that returns a short string like "F#4" (F#, octave 4). Add getter, e.g. gNote.sourceNote.Pitch?.ToStringShortGet (#​1510) (45bdb20)

v1.8.5

Compare Source

Bug Fixes
  • Buzz Roll: Fix error in SVG export for buzz rolls (PR #​1493, #​1413) (e565af1)
  • Crescendo: Fix crescendo wedges for multi instrument scores (#​1480, PR #​1499) (3d60d46)
  • Noteflight: Fix rare error in erroneous Noteflight samples (#​1473) (0695159)
  • Fontstyle: Fix BoldItalic text displayed as Bold instead of BoldItalic (#​1487) (0e229dd), closes #​1483 #​1483
  • Fraction: Fix rare infinite loop with complex rhythms and floating point inaccuracies in greatestCommonDenominator (#​1478) (8e33752)
  • In-Measure Clefs: Wrong clef at end of measure no longer appears in certain Sibelius-exported scores (#​1461) (dab58b2)
  • Ledger Lines: Fix whole and half rests outside staff lines not having ledger lines (#​1142, PR #​1463) (e273c1c)
  • Subtitle: Recognize subtitle by credit-type element (even if given y value above title) (#​1456) (7c7329f)
  • SVG Export: Fix octave shift bracket text overlapping (#​1482) (only affects SVG export via JSDOM script). (e62cd28)
  • Tab Bends: Fix Tab bend moving on second render (re-render) (#​1496, PR #​1497) (df69d9d)
  • Tabs: Don't show fingerings by default in a tab staff (#​1468). Add EngravingRule TabFingeringsRendered (82068b7)
  • Tabs: Don't show time and key signature by default in a tab staff (#​1467). Add EngravingRules TabTimeSignatureRendered, TabKeySignatureRendered (10f9c78)
  • Tuplet: Respect show-number="none" (#​1460). Add EngravingRule TupletNumberUseShowNoneXMLValue (68320ab)
Features
  • Color: Words nodes / expressions use XML color by default. Add EngravingRule ExpressionsUseXMLColor (#​1492, PR #​1498) (207fcd4)
  • Expressions: Show words text in bold if given in XML (PR #​1471), add tempo expressions like allegro vivace to parsing (4580100)
  • Tabs: Add EngravingRules TabKeySignatureSpacingAdded, TabTimeSignatureSpacingAdded (for tab-only scores). Fix tabs x-alignment broken (no release affected) (#​1489, PR #​1490) (47cdd11)

v1.8.4

Compare Source

Bug Fixes
  • Error: Fix faulty MusicXML files from Sibelius/GuitarPro erroring on open for faulty xml pedal, octaveshift (#​1450) (d1ea681)
  • iOS: Fix memory leak when using Canvas on iOS in Safari (#​1411) (22d349d)
  • Layout: Fix invisible parts/measures affecting layout, especially when very note-dense (#​1444) (8bc6c6c)
  • Lyrics: Fix lyrics position / staffentry x position if there's a whole rest in a secondary voice (#​1267). Fix SourceStaffEntry.hasOnlyRests getter (52b7116)
  • Percussion: Fix position of whole rest note for 1-staffline rendering (#​1034) (25521e9)
  • Repetitions: Fix volta number not read from ending node text value (Finale) (#​1367). Respect print-object="no". (5fb6c56)
  • Subtitle: Fix subtitle sometimes not displayed with certain MusicXML structures (#​1456) (642b83d)
  • Wedges: Add missing in-between wedges for multiline crescendo/decrescendo (#​1277, PR #​1459) (45440a8)

v1.8.3

Compare Source

Bug Fixes
  • Chord Symbols: Fix chords not displayed when not above a note, e.g. multiple per note (#​1445, PR #​1446) (75a2f8a), closes #​599 #​791 #​1443 #​1443
  • Chord Symbols: Chord Symbols on whole measure rests now start near the beginning of the measure, not in the middle above the rest note (#​1443) (0b7df62)
  • Fingering: Fix multiple fingerings per note not shown/parsed (Sibelius xml syntax) (#​1442) (e121c0a)
  • Fingering: Fix fingerings drawn if drawFingerings: false option was set, for above/below position (6233d5a), closes #​650 #​1442
  • OctaveShift: Fix error for multiline shifts when (first) instrument hidden (#​1439) (c3d3402)
  • OctaveShift: Fix short octave shifts (single note) overlapping text+bracket (#​1440, #​1378). Add EngravingRule OctaveShiftOnWholeMeasureNoteUntilEndOfMeasure (7ea0911)
  • Tabs: Fix tab notes not x-aligned vertically when multiple ghost notes needed (#​1062) (6495011)
Features
  • API: Add osmd.EngravingRules.RenderCount (how many times render() was called) (#​1383, #​1420) (1e16c6d)
  • Tabs: Tab beams can be disabled optionally. Add EngravingRules.TabRenderBeams (fb78862)

v1.8.2

Compare Source

Bug Fixes
  • Measure Numbers: Avoid collisions with group brackets / instrument brackets (shift measure numbers upwards) (a43875f), closes #​1430
  • Metronome Marks: Prevent multiple metronome marks per measure drawn (#​1393). (Side effect: some marks less bold) (c457922)
  • Tabs: Fix errors for faulty tab xml files, add info log when fret, string missing (#​1432) (6b65369)
  • Build: Fix npm install with node v18 and on MacOS when OSMD is a dependency, updating gl dependency etc (#​1433)
Features
  • Tempo: Render more tempo expressions like poco meno (#​1431) by treating them as instant expressions graphically (94b3dec)

v1.8.1

Compare Source

Bug Fixes
Features

v1.8.0

Compare Source

Bug Fixes
  • Beams: Fix beams and noteheads missing in rare cases (#​1073) where Vexflow returns denominator 0. (6bf4140)
  • Chord Symbols: Fix chord symbol centering above note for short chords (#​1396). Add EngravingRules ChordSymbolExtraXShiftForShortChordSymbols, ChordSymbolExtraXShiftWidthThreshold (3e7ed58), closes #​1376
  • Dynamics: Fix crescendo, decrescendo, wedges start x and end x, wedge overlaps. Widen most wedges (#​1404) (e1476b4), closes #​1405
  • FixedMeasureWidth: Fix not applied to first measure (#​1314). Add EngravingRule FixedMeasureWidthUseForPickupMeasures, default false. (c1f86f4)
  • Lyrics, ChordSymbols: Fix measure elongation (to prevent overlaps) applied when lyrics or chord symbols not rendered (#​324, #​597, #​819) (bd0ce39)
  • Lyrics: Fix short lyrics not looking vertically centered below notes. Fix dash overlap in short intervals. (#​1407, PR #​1408) (6798b69)
  • Repeats: Fix left barline of first measure not allowed to be repeat barline (#​1410). Add EngravingRule RepetitionAllowFirstMeasureBeginningRepeatBarline (525c48d)
  • Tuplets: Fix repeated bracketed tuplet missing tuplet number with TupletNumberLimitConsecutiveRepetitions enabled (#​1402) (c2db9d7), closes #​1401 #​1401 #​1401
  • Tuplets: Fix tuplets not bracketed when not on single beam (e.g. including rest note) (#​1400, #​1401). Add EngravingRule TupletsBracketedUseXMLValue (a7fde50)
  • Visual Regression Tests: Use lower threshold (#​1398). Fix scientific notation causing syntax error for low thresholds/hashes, not working+creating diff (2286564)
Features
  • Cajon: Add Option to fix note placement for 2-staffline cajon (#​1409). Add EngravingRules.PercussionUseCajon2NoteSystem (default false) (d2bfb90)
  • Dynamics: Add EngravingRule IgnoreRepeatedDynamics, default false (#​767), works for most situations (except e.g. repetition 2nd+ volta) (2fadf05)
  • Lyrics Spacing: Reduce measure sizes for short notes with long lyrics by adding x-padding (#​1394, PR #​1395). Add EngravingRules.LyricsUseXPaddingForShortNotes, LyricsXPaddingFactorForLongLyrics, LyricsXPaddingWidthThreshold (8e1301f)
  • Options: Add EngravingRules SlurPlacementAtStems, SlurPlacementUseSkybottomLine (default false). Improve slur end articulation detection (#​1224) (5384272)
  • Tremolo: Render Buzz Roll (unmeasured tremolo) (#​1413). Add EngravingRule TremoloBuzzRollThickness (4b66d1b)
  • Words: Add option to place words inside staffline at defaultY XML value (#​1412). Add EngravingRules PlaceWordsInsideStafflineFromXml, PlaceWordsInsideStafflineYOffset (f884ec7)

1.7.6 (2023-06-05)

Bug Fixes
  • OctaveShift: Fix error when octave shift end note/measure not found (e.g. IsExtraGraphicalMeasure). (#​1377) (3011019), closes #​1378 #​1376
  • OctaveShift: Fix octave shift not ending at measure end for multiline and whole measure notes (#​1378, PR #​1379), make multi-line shift open-ended for in-between stafflines (14493aa), closes #​1376
  • OctaveShift: Fix octave shift notes not shifted under certain conditions (end not respected) (#​1382, PR #​1386) (242dad0)
  • Typo: Rename EngravingRules.AutoGenerateMutipleRestMeasuresFromRestMeasures AutoGenerateMultipleRestMeasuresFromRestMeasures (missing 'l')(PR #​1373) (4276613)
Features
  • Copyright: New option to render copyright: osmd.EngravingRules.RenderCopyright = true (renders identification/rights tag) (#​1365) (a489d47), closes #​353 #​727
  • Expressions: Add a few more expressions texts, e.g. ritard. now supported (PR #​1361) (e9859a2), closes #​1357 #​1347
  • FixedMeasureWidth: Add EngravingRules.FixedMeasureWidth and FixedMeasureWidthFixedValue options (#​1314, PR #​1368) (4c31dde)
  • System/Line break: Add option newSystemFromNewPageInXML to do a system break for XML new-page even when newPageFromXML = false (PR #​1357) (f46c5cd)

1.7.5 (2023-03-24)

Bug Fixes
  • Chord Symbols: Fix chord symbols associated with the wrong note/timestamp (#​1270, PR #​1342) (f36ab0c)
  • Dorico Parsing: Fix slur end missed when slur+tie stops simultaneous/in separate notation elements (PR #​1341) (cd4f125)
  • EmptyMeasure: Fix EngravingRules.FillEmptyMeasuresWithWholeRest = 1 (YesVisible) erroring when no voice was created yet (first measure) (#​1339) (1c1baf3)
  • Fingering: Don't place above for upper staff if EngravingRules.FingeringPosition was set to Below (#​1348, PR #​1349) (bdb1f51)
  • Multiple Rest Measures: Fix an issue where the sheet containing pickup measures lead to the isReducedToMultiRest flag not set correctly (#​1327) (b5ba101)
  • Multiple Rest Measures: Fix repetition at the end of multiple rest measures not rendered (#​1333) (a7278cc)
  • SVG Export / Tabs: Fix tabnote not clearing/painting white rectangle around number (PR #​1321) (304076a)
Features
  • Options: Add GraphicalMeasure.ShowKeySignature, EngravingRules.MultipleRestMeasureAddKeySignature options (#​1329) (e8439a1)

1.7.4 (2023-02-02)

Bug Fixes
  • Articulation: Support "harmonic" technical notation (naturalharmonic), e.g. drums open hi-hat (8dcaa08)
  • Cursor: Fix cursor.previous() not setting Iterator.currentTimestamp correctly when going back from full measure note (#​1309) (66f0e1c)
  • Cursor: Fix EndReached position display when first instrument is hidden (#​1310) (e52385f)
  • Cursor: If instrument at current position is now invisible, show the previous position instead of nothing (#​1312) (4dd73f5)
  • Cursor: Show last position in score if hiding cursor, moving past end of sheet, then showing, instead of showing nothing (#​1308) (d899128)
  • Tremolo: Offset tremolo strokes if note has a beam (e30fcbc)
Features
  • Cursor: If going beyond confines of sheet (previous() at first note, or next() at last note), show cursor visually at start/end of measure (#​1308), creating a visual difference to first/last note positions (d091cd9)
  • Glissando: Implement glissando and slide MusicXML elements. Fix tab slides too long. Add EngravingRules.RenderGlissandi. (#​1318, PR #​1319, #​344) (460e920)
  • Glissando: Add EngravingRules.GlissandoDefaultWidth. Add GraphicalGlissando.Color (#​1318) (b1e67d5)
  • Tabs: Add Id to tabnotes in SVG/DOM (460e920/tabnote.js)

1.7.3 (2023-01-23)

Bug Fixes
Features
  • Pedal: Start at beginning of stave (after modifiers) if start note is whole measure rest (and e.g. measures above it have non-rest notes) (#​1306, PR #​1307) (92eb9b6)

1.7.2 (2023-01-18)

Bug Fixes
  • Clefs: Fix Clef at measure end in wrong measure if backup nodes used (#​1294, PR #​1295) (e.g. Sibelius) (9a6aa3f)
  • Build: Fix umlauts in key identifiers error (#​1293)

1.7.1 (2022-12-30)

Bug Fixes

v1.7.6

Compare Source

Bug Fixes
  • OctaveShift: Fix error when octave shift end note/measure not found (e.g. IsExtraGraphicalMeasure). (#​1377) (3011019), closes #​1378 #​1376
  • OctaveShift: Fix octave shift not ending at measure end for multiline and whole measure notes (#​1378, PR #​1379), make multi-line shift open-ended for in-between stafflines (14493aa), closes #​1376
  • OctaveShift: Fix octave shift notes not shifted under certain conditions (end not respected) ([#​1382](https://redirect.g

Configuration

📅 Schedule: 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 force-pushed the renovate/opensheetmusicdisplay-1.x branch from b430cf6 to 38f5656 Compare November 26, 2021 18:42
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.3.0 fix(deps): update dependency opensheetmusicdisplay to v1.3.1 Nov 26, 2021
@codecov
Copy link

codecov bot commented Nov 26, 2021

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 73.65%. Comparing base (cd59c83) to head (631e493).

❗ Current head 631e493 differs from pull request most recent head 4c42a8e. Consider uploading reports for the commit 4c42a8e to get more accurate results

Additional details and impacted files
@@           Coverage Diff           @@
##           master     #792   +/-   ##
=======================================
  Coverage   73.65%   73.65%           
=======================================
  Files          19       19           
  Lines         334      334           
  Branches       24       24           
=======================================
  Hits          246      246           
  Misses         88       88           
Flag Coverage Δ
unittests 73.65% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from 38f5656 to 9eb935d Compare January 14, 2022 23:04
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.3.1 fix(deps): update dependency opensheetmusicdisplay to v1.4.0 Jan 14, 2022
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from 9eb935d to bf74945 Compare January 17, 2022 13:49
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.4.0 fix(deps): update dependency opensheetmusicdisplay to v1.4.1 Jan 17, 2022
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from bf74945 to 3c99ced Compare January 18, 2022 00:49
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.4.1 fix(deps): update dependency opensheetmusicdisplay to v1.4.2 Jan 18, 2022
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from 3c99ced to f66bf1f Compare January 19, 2022 01:22
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.4.2 fix(deps): update dependency opensheetmusicdisplay to v1.4.3 Jan 19, 2022
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from f66bf1f to 5136299 Compare January 27, 2022 15:05
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.4.3 fix(deps): update dependency opensheetmusicdisplay to v1.4.4 Jan 27, 2022
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from 5136299 to 8c670d6 Compare January 28, 2022 18:54
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.4.4 fix(deps): update dependency opensheetmusicdisplay to v1.4.5 Jan 28, 2022
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from 8c670d6 to 50ac198 Compare April 24, 2022 20:48
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.4.5 fix(deps): update dependency opensheetmusicdisplay to v1.5.0 Apr 24, 2022
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from 50ac198 to 58cda0a Compare August 29, 2022 22:51
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.5.0 fix(deps): update dependency opensheetmusicdisplay to v1.5.2 Aug 29, 2022
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from 58cda0a to a5a6831 Compare September 25, 2022 16:55
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.5.2 fix(deps): update dependency opensheetmusicdisplay to v1.5.6 Sep 25, 2022
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from a5a6831 to fbcb786 Compare November 20, 2022 14:39
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.5.6 fix(deps): update dependency opensheetmusicdisplay to v1.6.1 Nov 20, 2022
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.6.1 fix(deps): update dependency opensheetmusicdisplay to v1.7.4 Mar 16, 2023
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from fbcb786 to afe5b4e Compare March 16, 2023 16:07
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from afe5b4e to 513f89b Compare March 27, 2023 17:07
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.7.4 fix(deps): update dependency opensheetmusicdisplay to v1.7.5 Mar 27, 2023
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from 513f89b to a714e14 Compare June 5, 2023 19:33
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.7.5 fix(deps): update dependency opensheetmusicdisplay to v1.7.6 Jun 5, 2023
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from a714e14 to 0c3d15f Compare June 23, 2023 18:23
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.7.6 fix(deps): update dependency opensheetmusicdisplay to v1.8.0 Jun 23, 2023
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from 0c3d15f to 631e493 Compare July 14, 2023 17:28
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.8.0 fix(deps): update dependency opensheetmusicdisplay to v1.8.1 Jul 14, 2023
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.8.1 fix(deps): update dependency opensheetmusicdisplay to v1.8.2 Jul 28, 2023
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from 631e493 to 50840e9 Compare July 28, 2023 19:39
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from 50840e9 to 7dae90a Compare August 17, 2023 21:04
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.8.2 fix(deps): update dependency opensheetmusicdisplay to v1.8.3 Aug 17, 2023
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from 7dae90a to 84d3395 Compare September 19, 2023 15:43
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.8.3 fix(deps): update dependency opensheetmusicdisplay to v1.8.4 Sep 19, 2023
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from 84d3395 to 4468cad Compare January 10, 2024 01:34
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.8.4 fix(deps): update dependency opensheetmusicdisplay to v1.8.5 Jan 10, 2024
Copy link
Author

renovate bot commented Jan 10, 2024

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: yogo/packages/ui/package-lock.json
npm WARN deprecated @npmcli/move-file@2.0.1: This functionality has been moved to @npmcli/fs
npm ERR! code E404
npm ERR! 404 Not Found - GET https://registry.npmjs.org/@dawlet%2futils - Not found
npm ERR! 404 
npm ERR! 404  '@dawlet/utils@^0.10.0' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404 It was specified as a dependency of 'ui'
npm ERR! 404 
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate/cache/others/npm/_logs/2024-03-18T23_18_44_554Z-debug.log

@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from 4468cad to d256b4a Compare February 2, 2024 00:53
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.8.5 fix(deps): update dependency opensheetmusicdisplay to v1.8.6 Feb 2, 2024
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from d256b4a to b7c6609 Compare February 23, 2024 19:54
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.8.6 fix(deps): update dependency opensheetmusicdisplay to v1.8.7 Feb 23, 2024
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from b7c6609 to 4c42a8e Compare March 18, 2024 23:18
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.8.7 fix(deps): update dependency opensheetmusicdisplay to v1.8.8 Mar 18, 2024
@renovate renovate bot force-pushed the renovate/opensheetmusicdisplay-1.x branch from 4c42a8e to 2dadaa0 Compare July 15, 2024 19:56
@renovate renovate bot changed the title fix(deps): update dependency opensheetmusicdisplay to v1.8.8 fix(deps): update dependency opensheetmusicdisplay to v1.8.9 Jul 15, 2024
Copy link
Author

renovate bot commented Jul 15, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: yogo/packages/ui/package-lock.json
npm WARN deprecated npmlog@6.0.2: This package is no longer supported.
npm WARN deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported
npm WARN deprecated gauge@4.0.4: This package is no longer supported.
npm WARN deprecated are-we-there-yet@3.0.1: This package is no longer supported.
npm WARN deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm WARN deprecated @npmcli/move-file@2.0.1: This functionality has been moved to @npmcli/fs
npm ERR! code E404
npm ERR! 404 Not Found - GET https://registry.npmjs.org/@dawlet%2futils - Not found
npm ERR! 404 
npm ERR! 404  '@dawlet/utils@^0.10.0' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404 It was specified as a dependency of 'ui'
npm ERR! 404 
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate/cache/others/npm/_logs/2024-07-15T19_56_03_559Z-debug.log

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.

1 participant