reflex-components-code 0.9.4__tar.gz → 0.9.5a1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,10 @@
1
+ ## v0.9.5a1 (2026-09-10)
2
+
3
+ ### Miscellaneous
4
+
5
+ - Bump `shiki` and `@shikijs/transformers` to 4.4.3. ([#7019](https://github.com/reflex-dev/reflex/issues/7019))
6
+
7
+
1
8
  ## v0.9.4 (2026-08-28)
2
9
 
3
10
  ### Bug Fixes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: reflex-components-code
3
- Version: 0.9.4
3
+ Version: 0.9.5a1
4
4
  Summary: Reflex code display components.
5
5
  Author-email: Khaleel Al-Adhami <khaleel@reflex.dev>
6
6
  Maintainer-email: Khaleel Al-Adhami <khaleel@reflex.dev>
@@ -423,7 +423,7 @@ class ShikiBaseTransformers:
423
423
  class ShikiJsTransformer(ShikiBaseTransformers):
424
424
  """A Wrapped shikijs transformer."""
425
425
 
426
- library: str = "@shikijs/transformers@4.3.1"
426
+ library: str = "@shikijs/transformers@4.4.3"
427
427
  fns: list[FunctionStringVar] = dataclasses.field(
428
428
  default_factory=lambda: [
429
429
  FunctionStringVar.create(fn) for fn in SHIKIJS_TRANSFORMER_FNS
@@ -546,7 +546,7 @@ class ShikiCodeBlock(Component, MarkdownComponentMap):
546
546
 
547
547
  alias = "ShikiCode"
548
548
 
549
- lib_dependencies: list[str] = ["shiki@4.3.1"]
549
+ lib_dependencies: list[str] = ["shiki@4.4.3"]
550
550
 
551
551
  language: Var[LiteralCodeLanguage] = field(
552
552
  default=Var.create("python"), doc="The language to use."