Skip to content

fix(deps): update all non-major dependencies - #225

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-non-major
Open

fix(deps): update all non-major dependencies#225
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-non-major

Conversation

@renovate

@renovate renovate Bot commented Dec 10, 2023

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@solidjs/meta ^0.29.1^0.29.4 age confidence
@solidjs/router ^0.8.3^0.16.3 age confidence
@tailwindcss/typography ^0.5.10^0.5.20 age confidence
highlight.js (source) ^11.9.0^11.12.0 age confidence
solid-icons (source) ^1.1.0^1.2.0 age confidence
solid-js (source) ^1.8.5^1.9.14 age confidence
solid-transition-group ^0.2.3^0.3.0 age confidence

Release Notes

solidjs/solid-router (@​solidjs/router)

v0.16.3

Patch Changes
  • 31501fd: Add opt-in explicit scroll restoration for back/forward navigation: <Router scrollRestoration> (#​577). The browser's native same-document heuristic loses the saved offset when the destination route forces a layout while the document is still short — any component that measures itself on mount is enough to trigger it. When enabled the router sets history.scrollRestoration = "manual", captures positions continuously keyed by the history entry depth it already tracks, persists them across reloads, and restores after the navigation settles — retrying as the document grows if the target offset isn't reachable yet, cancelled by the first user scroll. Off by default on 0.x; no behavior changes unless enabled.

v0.16.2

Patch Changes
  • 676db85: fix #​451 - dispose per-route roots when the route tree unmounts; leaked roots stayed subscribed to route matches and crashed with TypeError: ... (evaluating 'match().path') on a later navigation (e.g. when a <Show> in the root component hid the outlet during login/logout flows)

  • cae1d15: Fix a batch of long-standing bugs:

    • useSubmission().retry was always a no-op due to an operator-precedence bug (#​504)
    • disposing an older owner no longer unregisters a newer action bound to the same URL, which caused forms to fall through to native submission after revalidation (#​542)
    • useBeforeLeave listeners now observe defaultPrevented set by other listeners (#​530)
    • <A> active state now ignores trailing slashes on href (#​532)
    • useCurrentMatches returns a copy so user mutation can't corrupt router state (#​516)
    • static path segments no longer percent-encode RFC 3986 pchar characters (+, @, :, $, &, ,, ;, =), so routes like /+foo or /@user match the browser's raw pathname (#​559, #​509)
    • consecutive synchronous setSearchParams calls now compose: the merge applies to the in-flight navigation target instead of the stale committed location (#​547)
  • e9acd69: fix #​454 - default RouteDefinition's data generic to any so typed components and preload functions are assignable in annotated configs like const routes: RouteDefinition[], where no inference site for the generic exists

  • 9d80d4e: Paths with empty interior segments (doubled slashes, e.g. //dash or /foo//bar) no longer match routes and now render the not-found state instead of silently matching their collapsed form (#​567). A single trailing slash is still tolerated. Doubled leading slashes are also no longer normalized away by the browser integration and parse correctly instead of being treated as protocol-relative URLs.

  • b308c21: fix #​497 - revalidate now forces the cache miss synchronously instead of deferring it into the transition microtask, so a same-tick refetch() after an un-awaited revalidate() refetches fresh data

  • e9acd69: fix #​347 - accept VoidComponent pages as route components; component now takes a RouteSectionComponent union so components that don't declare children type-check, while components requiring props the router doesn't pass are still rejected

v0.16.1

Patch Changes
  • e847f96: Fix the published package contents so dist no longer includes mirrored src, test, or co-located spec files.

    Also move the data tests under test/ and align the test TypeScript config with that layout so test:types continues to pass cleanly.

v0.16.0

Minor Changes
Patch Changes
  • 63940c5: Use name in action and createAsync

    action() and createAsync() were not respecting user defined name.
    Moreover, action was not applying the hashed name and only naming the action "mutate".

  • f9b6dc6: Make useHref return a string with string param

v0.15.4

Patch Changes
  • da5e1f9: allow URLSearchParams type for when enctype is not set to multipart/form-data

  • 1aa664e: - Improve route matching fallback

    • Optimize imports
  • fa46b67: fix(type): allow value from Params and SearchParams to be optional

  • bd89541: Support in operator for useParams()

  • 0a2f556: preserve headers in query()'s handleResponse()

  • ac97470: added SearchParams to the exported types

  • 8885abf: fix: createAsync - catch errors of prev to avoid bubbling error up

  • d665cc9: Fix Router popstate event handling logic

    • Simplified delta check logic for history navigation
    • Improved reliability of forward navigation detection
    • Fixed window.history.forward() navigation handling

v0.15.3

Patch Changes
  • 97184e4: more lenient on cache resuming (allow nested promises during hydration)

v0.15.2

Patch Changes

v0.15.1

Patch Changes
  • f3763aa: Export Submission at the top level
  • 813e6bd: fix onComplete return type

v0.15.0

Minor Changes
  • 6799556: rename cache to query, action onComplete

v0.14.10

Patch Changes

v0.14.9

Patch Changes
  • a22d7d2: fix preloadRoute to take string path
  • 6dd0473: support empty array/string to mean no revalidation

v0.14.8

Patch Changes
  • a3a36fb: Add query and param wrappers to support non-Proxy envs
  • 2475851: bump deps
  • 2f1fa18: improve anchor preload performance

v0.14.7

Patch Changes
  • 3594e45: fix iterator methods on useSubmissions

v0.14.6

Patch Changes
  • 0a964b6: Fix duplicated push history
  • c61231d: Fix scrollToHash to handle hashes starting with a number
  • 83b7093: remove extra code, fix #​406 slow perf on localeCompare

v0.14.5

Patch Changes
  • 5c87acc: fix partial matches in single flight mutations

v0.14.4

Patch Changes
  • 098dccb: fix #​474 improper search parameter resolution while routing
  • f8f30df: fix initial state including _depth

v0.14.3

Patch Changes
  • 19a21cc: fix async store references
  • f8aaf16: make url transform consistent
  • 86c3b1f: better handling of query only navigation

v0.14.2

Patch Changes
  • bc3d8e3: expose .latest from createAsync
  • fc6ac53: fix #​464 flaky hydration bail out
  • 3295502: fix hydration cancellation on browser events

v0.14.1

Patch Changes

v0.14.0

Minor Changes
  • e4a13f6: Response helpers return responses, cache/action filter them out
  • bd9f19a: default form actions to url encoded
  • 5d9263b: rename load to preload
Patch Changes
  • a7e4062: fix #​457 extra leading slashes on path
  • 4b4536e: add usePreloadRoute export
  • 8cc0530: hack the types to work a bit better with Response Unions

v0.13.6

Patch Changes
  • 7344f69: Handle absolute redirects within cache on server
  • 8263115: Forward absolute redirects inside cache from server to client
  • 8fbf74a: Treat window.location.hash as URI encoded
  • e9fd55d: fix #​449 No JS submissions not working
  • f311f4a: fix #​452 useSubmission types/references
  • 2f05f37: Make isRouting more reliable + other fixes
  • 618ef17: performance improvement leveraging redirects in loadfn
  • d81473a: usePreloadRoute method pre-release

v0.13.5

Patch Changes
  • bfb059f: types Route -> RouteDescription

v0.13.4

Patch Changes
  • 00e37fd: Export all types used in public API
  • 2e90de5: Fix HashRouter state reset with replace: false
  • 75472d2: Fix useCurrentMatches a getter function

v0.13.3

Patch Changes

v0.13.2

Patch Changes
  • 0a34883: preserve original path on optional segments
  • 94797e1: Fix types for cache functions with all optional arguments
  • 8a547a8: don't submit form when submit event is defaultPrevented

v0.13.1

Patch Changes
  • 8b766a9: restore params into root

v0.13.0

Minor Changes
Patch Changes
  • 83e827d: minimum types for submission flash
  • 6df4a7a: push root/rootLoad outside of route matching

v0.12.5

Patch Changes

v0.12.4

Patch Changes
  • 533b7a0: fix unintended early return in cache during server render

v0.12.3

Patch Changes
  • 02c6e7a: action to return fully processed response

v0.12.2

Patch Changes
  • 5e8cbdb: apply the right owner (who's aware of the router)

v0.12.1

Patch Changes
  • 6d0be9e: fix cache serialization to match returned value
  • 052d385: Run load functions with owner & context of Router component.

v0.12.0

Minor Changes
  • 17ea145: add createAsyncStorage, prev argument, remove store from cache

v0.11.5

Patch Changes
  • 0413594: fix memory router no native events
  • 97d387b: add rootLoad
  • 5a94e7d: fix Router types, make singleFlight optional

v0.11.4

Patch Changes
  • d67ccbb: single flight mutations
  • 76724af: pass revalidate through json helper

v0.11.3

Patch Changes
  • 9cc1a85: update response types to be always present

v0.11.2

Patch Changes
  • fab3cc0: fix renderToString for cache fns

v0.11.1

Patch Changes

v0.11.0

Minor Changes
tailwindlabs/tailwindcss-typography (@​tailwindcss/typography)

v0.5.20

Compare Source

Fixed
  • Support installing with stable versions of Tailwind CSS v4 (#​424)

v0.5.19

Compare Source

Fixed
  • Fixed broken color styles (#​405)

v0.5.18

Compare Source

Fixed
  • Fixed undefined variable error (#​403)

v0.5.17

Compare Source

Added
  • Add modifiers for description list elements (#​357)
  • Add prose-picture modifier (#​367)
Fixed
  • Include unit in hr border-width value (#​379)
  • Ensure <kbd> styles work with Tailwind CSS v4 (#​387)
Changed
  • Remove lodash dependencies (#​402)

v0.5.16

Compare Source

Fixed
  • Support installing with beta versions of Tailwind CSS v4 (#​365)

v0.5.15

Compare Source

Fixed
  • Support installing with alpha versions of Tailwind CSS v4 (#​358)

v0.5.14

Compare Source

Fixed
  • Fix table text alignment (#​346)

v0.5.13

Compare Source

Fixed
  • Don't apply margins to <br> elements contained in an <li> in FF (#​350)

v0.5.12

Compare Source

Added
  • Use logical properties for better RTL support (#​323)

v0.5.11

Compare Source

Added
Fixed
  • Fix space between <figcaption> and <video> (#​339)
highlightjs/highlight.js (highlight.js)

v11.12.0

Compare Source

Parser Engine:

  • fix(parser) count named capture groups when rewriting backreferences spokodev

New Grammars:

  • add FreeDesktop config file (.desktop / systemd) grammar gg582
  • added 3rd party Cedar grammar to SUPPORTED_LANGUAGES Dhruv Maniya
  • added 3rd party DAX and M (Power Query) grammars to SUPPORTED_LANGUAGES jiaopengzi
  • added 3rd party Djot grammar to SUPPORTED_LANGUAGES Mark Scherer
  • added 3rd party Igor Pro grammar to SUPPORTED_LANGUAGES Ryne Andal
  • added 3rd party Jaiva grammar to SUPPORTED_LANGUAGES Lehlogonolo Poole
  • added 3rd party Liquidsoap grammar to SUPPORTED_LANGUAGES Romain Beauxis
  • added 3rd party MoonBit grammar to SUPPORTED_LANGUAGES Kaida-Amethyst
  • added 3rd party Pkl grammar to SUPPORTED_LANGUAGES Dan Chao
  • added 3rd party RAScript grammar to SUPPORTED_LANGUAGES Joshua Raphael
  • added 3rd party Veryl grammar to SUPPORTED_LANGUAGES Naoya Hatta
  • added 3rd party Why3 grammar to SUPPORTED_LANGUAGES JGalego
  • added 3rd party Xojo grammar to SUPPORTED_LANGUAGES patricksalo
  • referenced existing 3rd party ES|QL grammar in SUPPORTED_LANGUAGES Styx0x6

Core Grammars:

  • fix(c) only match real atomic_* type names, not C11 atomic functions, issue #​3837 Mark Xian
  • fix(c, cpp) bound the run of type tokens in front of a function name (ReDoS), issue #​4362 Jayesh Bhade
  • fix(c, cpp) scope angle-bracket header string to #include, issue #​3505 Pablo
  • fix(c, cpp) stop a raw string's closing delimiter from swallowing quotes, issue #​3585 David Pavlovschii
  • enh(cmake) add block and endblock keywords Anonymous Maarten
  • fix(cmake) only highlight standalone numbers, not digits that begin an identifier (e.g. 3rdparty), issue #​4170 Mark Xian
  • fix(cpp) require a word boundary before numeric literals so digits inside identifiers aren't highlighted as numbers, issue #​4231 Mark Xian
  • fix(crystal) stop treating integer division // as a regex literal Zain Asif
  • enh(csharp) support digit separators in binary literals and numeric type suffixes, and stop highlighting the leading _ of an identifier, issue #​4258 Sarath Francis
  • enh(css) add corner-shape properties Hama Tanveer
  • enh(css) support six-digit unicode-range values Konstantin Baltsat
  • enh(dart) add highlighting for class and function names guuido
  • enh(dns) highlight registered CAA property tags, issue #​4475 Joey Huang
  • enh(dns) improve grammar: character strings, TXT, classes, escapes, addresses Checconio
  • enh(dos) add batch as an alias, issue #​4395 Hashim Khan
  • enh(gherkin) update keyword list Hirse
  • enh(gherkin) variables can't contain whitespace Hirse
  • enh(gherkin) docstrings can use backticks Hirse
  • enh(go) recognize binary integer literals spokodev
  • enh(groovy) support underscores in numeric literals greymoth
  • fix(haskell) highlight where in GADT and closed type-family declarations, issue #​3753 Konstantin Baltsat
  • enh(java) improve detection of types, including generic and array types Hannes Wallnoefer
  • enh(javascript) add self to built-in variables Dsaquel
  • enh(kotlin) add ktm and ktx aliases DarkMatter-999
  • fix(leaf) fix bug in Leaf keyword highlighting Francesco Paolo Severino
  • fix(lisp) preserve highlighting after quoted multiplication expressions arturict
  • enh(llvm) support block C-style comments utam-1
  • enh(lua) add Lua 5.5 global keyword Nibiri
  • fix(markdown) don't treat a *** or ___ thematic break as the start of bold text, issue #​3719 Mayank Gupta
  • enh(nsis) enhance NSIS rules Jan T. Sott
  • enh(python) add missing builtins: aiter and anext (3.10), frozendict and sentinel (3.15) Hugo van Kemenade
  • enh(python) correctly highlight lazy import syntax from PEP 810 Peter Bierma
  • enh(python) support t-strings Nicolas Le Cam
  • fix(ruby) don't treat the scope resolution operator :: as a symbol, issue #​4294 Hashim Khan
  • enh(rust) add safe keyword Frances Wingerter
  • enh(rust) include the raw borrow operator in keywords Shiva Kiran Koninty
  • enh(rust) parse f16 and f128 literals usamoi
  • fix(rust) allow function invocations whose names start with a keyword Xia Li-yao
  • fix(rust) recognize \\ and \" char-literal escapes so highlighting doesn't leak, issue #​4351 Sarath Francis
  • enh(shell) match period (.) as part of shell prompt Ian Wienand
  • enh(sqf) update to Arma 3 v2.22 LouMontana
  • fix(xml) remove recursive sublanguage references to prevent ReDoS petejm

Documentation:

  • docs(php) explain the difference between php and php-template Zain Asif
  • document LLVM IR in SUPPORTED_LANGUAGES Jan Schultke
  • document the existing pwsh alias for PowerShell helpimnotdrowning
  • list languages with category "common" in SUPPORTED_LANGUAGES Marc Bernard
  • remind contributors to run npm i Proliecan
  • fix typos in README.CDN.md Zitrone

Themes:

Build / Tooling:

  • (build) allow third-party packages to override default languages Lysxia
  • (build) use Trusted Publishers in the publishing pipeline allejo
  • fix(types) allow RegExp in Mode.keywords KJyang-0114
  • refactor(tools) replace @colors/colors with ansis webdiscus
  • chore: dependency updates

CONTRIBUTORS

v11.11.2

Compare Source

Parser Engine:

  • fix illegal handling at end of input code Josh Goebel

New Grammars:

  • added 3rd party Aiken grammar to SUPPORTED_LANGUAGES Josh Marchand
  • added 3rd party VoltScript grammar to SUPPORTED_LANGUAGES Chester Moses
  • added 3rd party Gleam grammar to SUPPORTED_LANGUAGES Filip Hoffmann
  • added 3rd party L4 grammar to SUPPORTED_LANGUAGES Thomas Gorissen
  • added 3rd party Liquidsoap grammar to SUPPORTED_LANGUAGES Romain Beauxis
  • added 3rd party Magik grammar to SUPPORTED_LANGUAGES Sebastiaan Speck
  • added 3rd party Prisma grammar to SUPPORTED_LANGUAGES SungHyun Kim
  • added 3rd party Bicep grammar to SUPPORTED_LANGUAGES Anthony Martin
  • added 3rd party L4 grammar to SUPPORTED_LANGUAGES Thomas Gorissen
  • added 3rd party Abc Notation grammar to SUPPORTED_LANGUAGES NriotHrreion
  • added 3rd party Veryl grammar to SUPPORTED_LANGUAGES Naoya Hatta
  • added 3rd party RAScript grammar to SUPPORTED_LANGUAGES Joshua Raphael
  • added 3rd party Jaiva grammar to SUPPORTED_LANGUAGES Lehlogonolo Poole
  • added 3rd party MoonBit grammar to SUPPORTED_LANGUAGES Kaida-Amethyst
  • added 3rd party Pkl grammar to SUPPORTED_LANGUAGES Dan Chao
  • added 3rd party Igor Pro grammar to SUPPORTED_LANGUAGES Ryne Andal
  • added 3rd party Why3 grammar to SUPPORTED_LANGUAGES JGalego

Core Grammars:

  • fix(cpp) exclude keywords from function calls Eisenwave
  • enh(csp) add missing directives / keywords from MDN (7 more) Max Liashuk
  • enh(ada) add new parallel keyword, allow [] for Ada 2022 Max Reznik
  • fix(javascript) correctly highlight 'for await' again [wolfgang42][]
  • fix(diff) fix unified diff hunk header regex to allow unpaired numbers Chris Wilson
  • enh(php) support single line and hash comments in attributes, constructor and functions Antoine Musso
  • fix(ex) adds support for ?' char literal and missing defguardp keyword Kevin Bloch
  • enh(json) add json5 support Kerry Shetline
  • fix(csharp) Support digit separators te-ing
  • enh(java) improve detection of types, including generic and array types Hannes Wallnoefer
  • enh(shell) match period (.) as part of shell prompt [Ian Wienand][]
  • enh(kotlin) Add ktm and ktx as an alias for Kotlin DarkMatter-999
  • enh(rust) parse f16 and f128 literals usamoi
  • enh(rust) Include the raw borrow operator in keywords. Shiva Kiran Koninty
  • fix(css) unicode-range parsing, issue #​4253 Kerry Shetline
  • enh(python) correctly highlight lazy import syntax from PEP 810 Peter Bierma

Documentation:

Themes:

  • Fix: cybertopia themes render correctly in shadow DOM hbgl
  • added "vs Dark " theme Twineee1

CONTRIBUTORS

v11.11.1

Compare Source

  • Fixes regression with Rust grammar.

v11.11.0

Compare Source

CAVEATS / POTENTIALLY BREAKING CHANGES

  • Nothing yet.

Core Grammars:

  • fix(rust) - adds emoji support in single quote strings [joshgoebel][]
  • fix(apache) - support line continuation via \ Josh Goebel
  • fix(makefile) - allow strings inside $() expressions aneesh98
  • enh(arcade) updated to ArcGIS Arcade version 1.29 Kristian Ekenes
  • enh(css) add all properties listed on MDN (96 additions including anchor-name, aspect-ratio, backdrop-filter, container, margin-trim, place-content, scroll-timeline, ...) BaliBalo
  • enh(excel) add built-in functions for Excel 365 release to 2024 Danny Winrow
  • enh(erlang) OTP 27 triple-quoted strings nixxquality
  • enh(erlang) OTP 27 doc attribute nixxquality
  • enh(erlang) OTP 27 Sigil type nixxquality
  • enh(erlang) OTP25/27 maybe statement nixxquality
  • enh(dart) Support digit-separators in number literals [Sam Rawlins][]
  • enh(csharp) add Contextual keywords file, args, dynamic, record, required and scoped Alvin Joy
  • enh(lua) add 'pluto' as an alias Sainan
  • enh(bash) add reserved keywords time and coproc Álvaro Mondéjar
  • enh(nix) update keywords [h7x4][]
  • enh(nix) support paths [h7x4][]
  • enh(nix) support lookup paths [h7x4][]
  • enh(nix) support operators [h7x4][]
  • enh(nix) support REPL keywords [h7x4][]
  • enh(nix) support markdown comments [h7x4][]
  • enh(nix) support basic function params [h7x4][]
  • enh(nix) better parsing of attrsets [h7x4][]
  • fix(c) - Fixed hex numbers with decimals Dxuian
  • fix(typescript) - Fixedoptional property not highlighted correctly Dxuian
  • fix(ruby) - fix |= operator false positives (as block arguments) Aboobacker MK
  • enh(gcode) rewrote language for modern gcode support Barthélémy Bonhomme
  • fix(sql) - Fixed sql primary key and foreign key spacing issue Dxuian
  • fix(cpp) added flat_set and flat_map as a part of cpp 23 version Lavan
  • fix(yaml) - Fixed special chars in yaml Dxuian
  • fix(basic) - Fixed closing quotation marks not required for a PRINT statement Somya
  • fix(nix) remove add builtin [h7x4][]
  • fix(nix) mark or as builtin instead of literal [h7x4][]
  • fix(nix) handle ''' string escapes [h7x4][]
  • fix(nix) handle backslash string escapes [h7x4][]
  • fix(nix) don't mix escapes for " and '' strings [h7x4][]
  • fix(swift) - Fixed syntax highlighting for class func/var declarations guuido
  • fix(yaml) - Fixed wrong escaping behavior in single quoted strings guuido
  • enh(nim) - Add concept and defer to list of Nim keywords Jake Leahy
  • fix(cpp) - Exclude keywords from highlighting as function calls Eisenwave

New Grammars:

  • added 3rd party TTCN-3 grammar to SUPPORTED_LANGUAGES Osmocom
  • added 3rd party Odin grammar to SUPPORTED_LANGUAGES clsource
  • added 3rd party Liquid grammar to SUPPORTED_LANGUAGES Laurel King

Developer Tools:

  • Nothing yet.

Themes:

Improvements:

  • Resolve the memory leak problem when creating multiple Highlight.js instances Imken

CONTRIBUTORS

v11.10.0

Compare Source

CAVEATS / POTENTIALLY BREAKING CHANGES

  • Drops support for Node 16.x, which is no longer supported by Node.js.

Core Grammars:

  • enh(typescript) add support for satisfies operator Kisaragi Hiu
  • enc(c) added more C23 keywords Melkor-1
  • enh(json) added jsonc as an alias BackupMiles
  • enh(gml) updated to latest language version (GML v2024.2) gnysek
  • enh(c) added more C23 keywords and preprcoessor directives Eisenwave
  • enh(js/ts) support namespaced tagged template strings Aral Balkan
  • enh(perl) fix false-positive variable match at end of string Josh Goebel
  • fix(cpp) not all kinds of number literals are highlighted correctly Lê Duy Quang
  • fix(css) fix overly greedy pseudo class matching Bradley Mackey
  • enh(arcade) updated to ArcGIS Arcade version 1.24 Kristian Ekenes
  • fix(typescript): params types Mohamed Ali
  • fix(rust) fix escaped double quotes in string Mohamed Ali
  • fix(rust) fix for r# raw identifier not being highlighted correctly. JaeBaek Lee
  • enh(rust) Adding union to be recognized as a keyword in Rust. JaeBaek Lee
  • fix(yaml) fix for yaml with keys having brackets highlighted incorrectly Aneesh Kulkarni
  • fix(csharp) add raw string highlighting for C# 11. Tara
  • fix(bash) fix # within token being detected as the start of a comment Felix Uhl
  • fix(python) fix or conflicts with string highlighting Mohamed Ali
  • enh(python) adds a scope to the self variable [Lee Falin][]
  • enh(delphi) allow digits to be omitted for hex and binary literals Jonah Jeleniewski
  • enh(delphi) add support for digit separators Jonah Jeleniewski
  • enh(delphi) add support for character strings with non-decimal numerics Jonah Jeleniewski
  • fix(javascript) incorrect function name highlighting CY Fung
  • fix(1c) fix escaped symbols "+-;():=,[]" literals Vitaly Barilko
  • fix(swift) correctly highlight generics and conformances in type definitions Bradley Mackey
  • enh(swift) add package keyword Bradley Mackey
  • fix(swift) ensure keyword attributes highlight correctly Bradley Mackey
  • fix(types) fix interface LanguageDetail > keywords Patrick Chiu
  • enh(java) add goto to be recognized as a keyword in Java Alvin Joy
  • enh(bash) add keyword sudo Alvin Joy
  • fix(haxe) captures new keyword without capturing it within variables/class names Cameron Taylor
  • fix(go) fix go number literals to accept _ separators, add hex p exponents Lisa Ugray
  • enh(markdown) add entity support [David Schach][] TaraLei
  • enh(css) add justify-items and justify-self attributes Vasily Polovnyov
  • enh(css) add accent-color, appearance, color-scheme, rotate, scale and translate attributes Carl Räfting
  • fix(fortran) fixes parsing of keywords delimited by dots Julien Bloino
  • enh(css) add select, option, optgroup, picture and source to list of known tags Vasily Polovnyov
  • enh(css) add inset, inset-*, border-start-*-radius and border-end-*-radius attributes Vasily Polovnyov
  • enh(css) add text-decoration-skip-ink, text-decoration-thickness and text-underline-offset attributes Vasily Polovnyov
  • enh(java) add when to be recognized as a keyword in Java Chiel van de Steeg

New Grammars:

  • added 3rd party CODEOWNERS grammar to SUPPORTED_LANGUAGES nataliia-radina
  • added 3rd party Luau grammar to SUPPORTED_LANGUAGES Robloxian Demo
  • added 3rd party ReScript grammar to SUPPORTED_LANGUAGES Paul Tsnobiladzé
  • added 3rd party Zig grammar to SUPPORTED_LANGUAGES [Hyou BunKen][]
  • added 3rd party WGSL grammar to SUPPORTED_LANGUAGES Arman Uguray
  • added 3rd party Unison grammar to SUPPORTED_LANGUAGES Rúnar Bjarnason
  • added 3rd party Phix grammar to SUPPORTED_LANGUAGES PeteLomax
  • added 3rd party Mirth grammar to SUPPORTED_LANGUAGES Sierra
  • added 3rd party JSONata grammar to SUPPORTED_LANGUAGES Vlad Dimov

Developer Tool:

  • enh(tools): order CSS options picklist [David Schach][]
  • enh(tools): remove duplicate CSS options [David Schach][]
  • (typescript): deprecate old highlight API [Misha Kaletsky][]

Themes:

  • Added 1c-light theme a like in the IDE 1C:Enterprise 8 (for 1c) Vitaly Barilko
x64Bits/solid-icons (solid-icons)

v1.2.0

Compare Source

solidjs/solid (solid-js)

v1.9.10

Compare Source

v1.9.9

Compare Source

v1.9.8

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 12pm on Sunday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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-approve[bot]
renovate-approve Bot previously approved these changes Dec 10, 2023
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Dec 10, 2023
@renovate
renovate Bot enabled auto-merge (squash) December 10, 2023 10:08
@netlify

netlify Bot commented Dec 10, 2023

Copy link
Copy Markdown

Deploy Preview for joshdocs failed.

Name Link
🔨 Latest commit e3c73e6
🔍 Latest deploy log https://app.netlify.com/projects/joshdocs/deploys/6a7c3fd4c6103100080fe64e

renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Dec 13, 2023
renovate-approve[bot]
renovate-approve Bot previously approved these changes Dec 13, 2023
renovate-approve[bot]
renovate-approve Bot previously approved these changes Dec 13, 2023
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Dec 13, 2023
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Dec 14, 2023
renovate-approve[bot]
renovate-approve Bot previously approved these changes Dec 14, 2023
renovate-approve[bot]
renovate-approve Bot previously approved these changes Dec 17, 2023
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Dec 17, 2023
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Dec 18, 2023
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Apr 23, 2024
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Apr 26, 2024
renovate-approve[bot]
renovate-approve Bot previously approved these changes Apr 26, 2024
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes May 1, 2024
renovate-approve[bot]
renovate-approve Bot previously approved these changes May 1, 2024
renovate-approve[bot]
renovate-approve Bot previously approved these changes May 15, 2024
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes May 15, 2024
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes May 30, 2024
renovate-approve[bot]
renovate-approve Bot previously approved these changes May 30, 2024
renovate-approve[bot]
renovate-approve Bot previously approved these changes May 31, 2024
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes May 31, 2024
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 18, 2024
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Jun 18, 2024
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Jun 28, 2024
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 28, 2024
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Jul 6, 2024
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 6, 2024
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 8, 2024
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Jul 8, 2024
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Jul 8, 2024
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 8, 2024
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Jul 25, 2024
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 25, 2024
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Aug 7, 2024
renovate-approve[bot]
renovate-approve Bot previously approved these changes Aug 7, 2024
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Aug 9, 2024
renovate-approve[bot]
renovate-approve Bot previously approved these changes Aug 9, 2024
renovate-approve[bot]
renovate-approve Bot previously approved these changes Aug 12, 2024
renovate-approve-2[bot]
renovate-approve-2 Bot previously approved these changes Aug 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants