-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackages.json
More file actions
1487 lines (1487 loc) · 51.8 KB
/
Copy pathpackages.json
File metadata and controls
1487 lines (1487 loc) · 51.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": ".NET Runtime",
"url": "https://github.com/dotnet/runtime",
"npmName": null,
"githubOwner": "dotnet",
"githubRepo": "runtime",
"releases": [
{
"tag": "v10.0.2",
"title": ".NET 10.0.2",
"body": "[Release](https://github.com/dotnet/core/releases/tag/v10.0.2)",
"publishedAt": "2026-01-14T20:47:10Z"
},
{
"tag": "v9.0.12",
"title": ".NET 9.0.12",
"body": "[Release](https://github.com/dotnet/core/releases/tag/v9.0.12)",
"publishedAt": "2026-01-13T21:40:04Z"
},
{
"tag": "v8.0.23",
"title": ".NET 8.0.23",
"body": "[Release](https://github.com/dotnet/core/tree/v8.0.23)",
"publishedAt": "2026-01-13T21:28:59Z"
}
]
},
{
"name": "Adonis",
"url": "https://github.com/adonisjs/core",
"npmName": "adonis-framework",
"githubOwner": "adonisjs",
"githubRepo": "core",
"releases": []
},
{
"name": "Alpine.js",
"url": "https://github.com/alpinejs/alpine",
"npmName": "alpinejs",
"githubOwner": "alpinejs",
"githubRepo": "alpine",
"releases": []
},
{
"name": "Analog",
"url": "https://github.com/analogjs/analog",
"npmName": null,
"githubOwner": "analogjs",
"githubRepo": "analog",
"releases": []
},
{
"name": "Angular",
"url": "https://github.com/angular/angular",
"npmName": "@angular/core",
"githubOwner": "angular",
"githubRepo": "angular",
"releases": []
},
{
"name": "Ant Design",
"url": "https://github.com/ant-design/ant-design",
"npmName": null,
"githubOwner": "ant-design",
"githubRepo": "ant-design",
"releases": []
},
{
"name": "Anthropic SDK",
"url": "https://github.com/anthropics/anthropic-sdk-typescript",
"npmName": "@anthropic-ai/sdk",
"githubOwner": "anthropics",
"githubRepo": "anthropic-sdk-typescript",
"releases": []
},
{
"name": "Apollo Client",
"url": "https://github.com/apollographql/apollo-client",
"npmName": "@apollo/client",
"githubOwner": "apollographql",
"githubRepo": "apollo-client",
"releases": []
},
{
"name": "ASP.NET Core",
"url": "https://github.com/dotnet/aspnetcore",
"npmName": null,
"githubOwner": "dotnet",
"githubRepo": "aspnetcore",
"releases": [
{
"tag": "v10.0.2",
"title": ".NET 10.0.2",
"body": "## What's Changed\n\n- Source code updates from dotnet/dotnet\n- Delete signalr-daily-tests.yml\n- Switch to assetless build for official builds\n- Add loopback addresses to the development certificate\n- Fix minimal API validation for record structs\n- Fix circular reference resolution for schemas containing arrays\n- Improve Blazor reconnection experience after the server is restarted",
"publishedAt": "2026-01-14T20:45:50Z"
},
{
"tag": "v9.0.12",
"title": ".NET 9.0.12",
"body": "## What's Changed\n\n- Update branding to 9.0.12\n- Update `Microsoft.Build` versions to 17.8.43\n- Upgrade to MacOS 15 for CI\n- AppContext for HttpSys CBT hardening",
"publishedAt": "2026-01-13T21:37:53Z"
},
{
"tag": "v8.0.23",
"title": ".NET 8.0.23",
"body": "[Release](https://github.com/dotnet/core/releases/tag/v8.0.23)\n\nhttps://devblogs.microsoft.com/dotnet/dotnet-and-dotnet-framework-january-2026-servicing-updates/#release-changelogs",
"publishedAt": "2026-01-13T21:18:17Z"
}
]
},
{
"name": "Astro",
"url": "https://github.com/withastro/astro",
"npmName": "astro",
"githubOwner": "withastro",
"githubRepo": "astro",
"releases": []
},
{
"name": "Auth.js",
"url": "https://github.com/nextauthjs/next-auth",
"npmName": "next-auth",
"githubOwner": "nextauthjs",
"githubRepo": "next-auth",
"releases": []
},
{
"name": "Axios",
"url": "https://github.com/axios/axios",
"npmName": "axios",
"githubOwner": "axios",
"githubRepo": "axios",
"releases": []
},
{
"name": "Beads",
"url": "https://github.com/steveyegge/beads",
"npmName": null,
"githubOwner": "steveyegge",
"githubRepo": "beads",
"releases": [
{
"tag": "v0.49.0",
"title": "v0.49.0",
"body": "### Features\n- Real-time activity feed using fsnotify\n- Add 'view' as alias for 'show' command\n- Add 'bd children <id>' command\n- Add validate command for sync config\n- Federation: SQL user authentication, dolt sql-server mode, peer-to-peer sync\n- Per-worktree export state tracking\n- Jujutsu (jj) version control support\n- SQLite to Dolt migration tooling\n- Incremental export for large repos\n- Per-field merge strategies for conflict resolution\n- Interactive conflict resolution\n\n### Bug Fixes\n- Auto-correct deleted status to tombstone for JSONL compatibility\n- Prevent stack overflow in handleStaleLock\n- Prevent zombie state after database file replacement\n- Enforce single-process mode for Dolt backend\n- Stabilize tree ordering for consistent --tree output",
"publishedAt": "2026-01-22T08:20:08Z"
},
{
"tag": "v0.47.1",
"title": "v0.47.1",
"body": "### Features\n- Add --ready flag to show only available work\n- Add Markdown rendering to comment text\n\n### Bug Fixes\n- Prevent initialization from within git worktrees\n- Exclude sync_base.jsonl from multiple JSONL files check\n- Prefer issues with children/deps when choosing merge target\n- Support custom issue types and statuses in MCP\n- Rebuild blocked_issues_cache after rename-prefix",
"publishedAt": "2026-01-12T11:26:23Z"
},
{
"tag": "v0.47.0",
"title": "v0.47.0",
"body": "### Features\n- Add --dry-run flag to preview issue creation\n- Multi-repo custom types discovery\n- Redirect configuration health checks\n- Auto-discover workflow run ID in gate check\n- Pull-first sync with 3-way merge\n- Visual improvements for list tree, graph, and show commands\n- Add 'attests' edge type for skill attestations\n- Add bd resolve-conflicts command for JSONL merge conflicts\n\n### Bug Fixes\n- Enable cold-start bootstrap for read-only commands\n- Complete socket path shortening for long workspace paths\n- Silence deprecation warnings in --json mode\n- Handle text timestamps in scan for cross-driver compatibility\n- Windows infinite loop fixes\n- Daemon request context timeout to prevent indefinite hangs",
"publishedAt": "2026-01-11T08:30:18Z"
}
]
},
{
"name": "Bun",
"url": "https://github.com/oven-sh/bun",
"npmName": null,
"githubOwner": "oven-sh",
"githubRepo": "bun",
"releases": []
},
{
"name": "Chakra UI",
"url": "https://github.com/chakra-ui/chakra-ui",
"npmName": null,
"githubOwner": "chakra-ui",
"githubRepo": "chakra-ui",
"releases": []
},
{
"name": "Chart.js",
"url": "https://github.com/chartjs/Chart.js",
"npmName": "chart.js",
"githubOwner": "chartjs",
"githubRepo": "Chart.js",
"releases": []
},
{
"name": "Create React App",
"url": "https://github.com/facebook/create-react-app",
"npmName": "create-react-app",
"githubOwner": "facebook",
"githubRepo": "create-react-app",
"releases": []
},
{
"name": "create-vite",
"url": "https://github.com/vitejs/vite",
"npmName": "create-vite",
"githubOwner": "vitejs",
"githubRepo": "vite",
"releases": [
{
"tag": "v8.0.0-beta.9",
"title": "v8.0.0-beta.9",
"body": "Please refer to [CHANGELOG.md](https://github.com/vitejs/vite/blob/v8.0.0-beta.9/packages/vite/CHANGELOG.md) for details.",
"publishedAt": "2026-01-22T12:49:56Z"
},
{
"tag": "v8.0.0-beta.8",
"title": "v8.0.0-beta.8",
"body": "Please refer to [CHANGELOG.md](https://github.com/vitejs/vite/blob/v8.0.0-beta.8/packages/vite/CHANGELOG.md) for details.",
"publishedAt": "2026-01-15T01:33:26Z"
}
]
},
{
"name": "Cypress",
"url": "https://github.com/cypress-io/cypress",
"npmName": "cypress",
"githubOwner": "cypress-io",
"githubRepo": "cypress",
"releases": []
},
{
"name": "D3.js",
"url": "https://github.com/d3/d3",
"npmName": "d3",
"githubOwner": "d3",
"githubRepo": "d3",
"releases": []
},
{
"name": "date-fns",
"url": "https://github.com/date-fns/date-fns",
"npmName": "date-fns",
"githubOwner": "date-fns",
"githubRepo": "date-fns",
"releases": []
},
{
"name": "Day.js",
"url": "https://github.com/iamkun/dayjs",
"npmName": "dayjs",
"githubOwner": "iamkun",
"githubRepo": "dayjs",
"releases": []
},
{
"name": "Deno",
"url": "https://github.com/denoland/deno",
"npmName": null,
"githubOwner": "denoland",
"githubRepo": "deno",
"releases": []
},
{
"name": "Deno Fresh",
"url": "https://github.com/denoland/fresh",
"npmName": null,
"githubOwner": "denoland",
"githubRepo": "fresh",
"releases": []
},
{
"name": "Directus",
"url": "https://github.com/directus/directus",
"npmName": null,
"githubOwner": "directus",
"githubRepo": "directus",
"releases": []
},
{
"name": "Docker (Moby)",
"url": "https://github.com/moby/moby",
"npmName": null,
"githubOwner": "moby",
"githubRepo": "moby",
"releases": [
{
"tag": "docker-v29.2.0-rc.2",
"title": "v29.2.0-rc.2",
"body": "### New\n\n- `GET /info` now includes an `NRI` field for Node Resource Interface\n- New `Identity` field added to the inspect endpoint to show trusted origin information\n\n### Bug fixes and enhancements\n\n- Improve validation of `--detach-keys` command-line options\n- Prevent a potential panic on daemon shutdown\n- Remove restriction on anonymous read-only volumes",
"publishedAt": "2026-01-19T13:49:55Z"
},
{
"tag": "docker-v29.1.5",
"title": "v29.1.5",
"body": "### Packaging updates\n\n- Update Go runtime to 1.25.6\n\n### Networking\n\n- Fixed a regression where established network connections could be disrupted during a container's shutdown grace period",
"publishedAt": "2026-01-16T14:08:54Z"
},
{
"tag": "docker-v29.1.4",
"title": "v29.1.4",
"body": "### Bug fixes and enhancements\n\n- Fix `docker run --network none` panic on Windows\n- Fix image mounts failing with \"file name too long\" for long mount paths\n- Fix potential creation of orphaned overlay2 layers\n\n### Packaging updates\n\n- Update BuildKit to v0.26.3",
"publishedAt": "2026-01-09T09:33:14Z"
}
]
},
{
"name": "Docusaurus",
"url": "https://github.com/facebook/docusaurus",
"npmName": null,
"githubOwner": "facebook",
"githubRepo": "docusaurus",
"releases": []
},
{
"name": "Drizzle ORM",
"url": "https://github.com/drizzle-team/drizzle-orm",
"npmName": "drizzle-orm",
"githubOwner": "drizzle-team",
"githubRepo": "drizzle-orm",
"releases": [
{
"tag": "v1.0.0-beta.12",
"title": "1.0.0-beta.12",
"body": "## Breaking changes\n\n- `.generatedAlwaysAs()` now only accepts `sql` and `() => sql`\n\n## Improvements\n\n- PostgreSQL dialect now has extra schema errors in ts files on `generate` and `push` commands\n- SQLite dialect now has extra schema errors in ts files on `generate` and `push` commands\n\n## Bug fixes\n\n- Fixed various issues with drizzle-kit generate, node:crypto, and backslash in check constraints",
"publishedAt": "2026-01-22T15:50:12Z"
},
{
"tag": "v1.0.0-beta.11",
"title": "v1.0.0-beta.11",
"body": "- Defaulted `PgTimestampString` timezone offset to be `+00` when value gets returned as `Date` instance\n- Cache is now used only when explicitly defined\n- Separated date and int-exclusive column methods from common `pg builder`",
"publishedAt": "2026-01-15T11:56:27Z"
},
{
"tag": "v1.0.0-beta.9",
"title": "v1.0.0-beta.9",
"body": "- Drizzle now has native `@effect/sql-pg` driver support\n- Reworked PgColumn type chain with better type performance\n- Breaking: postgres `.array()` is now not chainable, use `.array('[][]')` for multidimensional\n- Migrated away from `esbuild-register` to `tsx` loader\n- Added native Bun and Deno launch support",
"publishedAt": "2026-01-15T11:50:11Z"
}
]
},
{
"name": "Effector",
"url": "https://github.com/effector/effector",
"npmName": "effector",
"githubOwner": "effector",
"githubRepo": "effector",
"releases": []
},
{
"name": "ElysiaJS",
"url": "https://github.com/elysiajs/elysia",
"npmName": null,
"githubOwner": "elysiajs",
"githubRepo": "elysia",
"releases": []
},
{
"name": "Entity Framework Core",
"url": "https://github.com/dotnet/efcore",
"npmName": null,
"githubOwner": "dotnet",
"githubRepo": "efcore",
"releases": []
},
{
"name": "esbuild",
"url": "https://github.com/evanw/esbuild",
"npmName": "esbuild",
"githubOwner": "evanw",
"githubRepo": "esbuild",
"releases": []
},
{
"name": "ESLint",
"url": "https://github.com/eslint/eslint",
"npmName": "eslint",
"githubOwner": "eslint",
"githubRepo": "eslint",
"releases": []
},
{
"name": "Expo",
"url": "https://github.com/expo/expo",
"npmName": "expo",
"githubOwner": "expo",
"githubRepo": "expo",
"releases": []
},
{
"name": "Express",
"url": "https://github.com/expressjs/express",
"npmName": "express",
"githubOwner": "expressjs",
"githubRepo": "express",
"releases": []
},
{
"name": "FastAPI",
"url": "https://github.com/fastapi/fastapi",
"npmName": null,
"githubOwner": "fastapi",
"githubRepo": "fastapi",
"releases": [
{
"tag": "0.128.0",
"title": "0.128.0",
"body": "### Breaking Changes\n\n- Drop support for `pydantic.v1`.",
"publishedAt": "2025-12-27T15:20:49Z"
},
{
"tag": "0.127.1",
"title": "0.127.1",
"body": "### Refactors\n\n- Add a custom `FastAPIDeprecationWarning`.\n\n### Docs\n\n- Add documentary to website.",
"publishedAt": "2025-12-26T13:03:58Z"
},
{
"tag": "0.127.0",
"title": "0.127.0",
"body": "### Breaking Changes\n\n- Add deprecation warnings when using `pydantic.v1`.",
"publishedAt": "2025-12-21T16:46:52Z"
}
]
},
{
"name": "Fastify",
"url": "https://github.com/fastify/fastify",
"npmName": "fastify",
"githubOwner": "fastify",
"githubRepo": "fastify",
"releases": []
},
{
"name": "Formik",
"url": "https://github.com/jaredpalmer/formik",
"npmName": "formik",
"githubOwner": "jaredpalmer",
"githubRepo": "formik",
"releases": []
},
{
"name": "Framer Motion",
"url": "https://github.com/motiondivision/motion",
"npmName": "framer-motion",
"githubOwner": "motiondivision",
"githubRepo": "motion",
"releases": []
},
{
"name": "Gas Town",
"url": "https://github.com/steveyegge/gastown",
"npmName": "@gastown/gt",
"githubOwner": "steveyegge",
"githubRepo": "gastown",
"releases": [
{
"tag": "v0.5.0",
"title": "v0.5.0",
"body": "### Features\n- Add 'read' as alias for 'show' subcommand\n- Add --comment as alias for --reason in gt close\n- Add OpenCode as built-in agent preset\n- Convoy: redundant observers, specific ID check, dry-run flag\n- Deacon: zombie-scan command for tmux-verified process cleanup\n- Auto-fix capability for SessionHookCheck\n- Hook registry and install command\n- Mail improvements: multiple message IDs, --all flag, numeric index support\n- Orphans: --aggressive flag, kill command\n- Config-based role definition system\n- Squash merge for Refinery to eliminate redundant merge commits\n- Cross-account session access in Seance\n- Misclassified wisp detection and defense-in-depth filtering\n- Configurable polecat branch naming\n\n### Bug Fixes\n- Multi-repo routing for custom types and role slots\n- Auto-recover from stale tmux pane references\n- Use registered rigs for merge queue instead of hardcoded repos\n- Allow feature branches in contributor workflow\n- Session counter bug and --cleanup-orphans flag\n- Prevent gt done from killing itself during session cleanup\n- Resolve claude path for alias installations",
"publishedAt": "2026-01-22T07:10:26Z"
}
]
},
{
"name": "Gatsby",
"url": "https://github.com/gatsbyjs/gatsby",
"npmName": "gatsby",
"githubOwner": "gatsbyjs",
"githubRepo": "gatsby",
"releases": []
},
{
"name": "GitHub Actions Runner",
"url": "https://github.com/actions/runner",
"npmName": null,
"githubOwner": "actions",
"githubRepo": "runner",
"releases": [
{
"tag": "v2.331.0",
"title": "v2.331.0",
"body": "## What's Changed\n\n* Fix owner of /home/runner directory\n* Update Docker to v29.0.2 and Buildx to v0.30.1\n* Bump docker image to use ubuntu 24.04\n* Add support for case function\n* Set ACTIONS_ORCHESTRATION_ID as env to actions\n* Allow hosted VM report job telemetry via .setup_info file",
"publishedAt": "2026-01-09T17:26:04Z"
},
{
"tag": "v2.330.0",
"title": "v2.330.0",
"body": "## What's Changed\n\n* Custom Image: Preflight checks\n* Improve logic around decide IsHostedServer\n* Add support for libicu73-76 for newer Debian/Ubuntu versions\n* Only start runner after network is online\n* Retry http error related to DNS resolution failure",
"publishedAt": "2025-11-19T14:38:48Z"
},
{
"tag": "v2.329.0",
"title": "v2.329.0",
"body": "## What's Changed\n\n* Update safe_sleep.sh for bug when scheduler is paused\n* Acknowledge runner request\n* Map RUNNER_TEMP for container action\n* Bump node.js to latest version in runner\n* Include k8s novolume (version v0.8.0)\n* Report job has infra failure to run-service",
"publishedAt": "2025-10-14T14:57:30Z"
}
]
},
{
"name": "Grafana",
"url": "https://github.com/grafana/grafana",
"npmName": null,
"githubOwner": "grafana",
"githubRepo": "grafana",
"releases": [
{
"tag": "v12.3.1",
"title": "12.3.1",
"body": "### Features and enhancements\n\n- Alerting: Update alerting dependency\n- Azure: Improved column handling in logs query builder\n- Dependencies: Bump Go to v1.25.5\n\n### Bug fixes\n\n- Azure: Fix `dcount` aggregation\n- Azure: Fix `percentile` syntax\n- Dashboards: Fix empty space under time controls when a dashboard has a lot of variables\n- Postgresql: Fix variable interpolation logic when the variable has multiple values",
"publishedAt": "2025-12-16T21:58:21Z"
},
{
"tag": "v12.2.3",
"title": "12.2.3",
"body": "### Features and enhancements\n\n- Alerting: Update alerting dependency\n- Azure: Improved column handling in logs query builder\n- Dependencies: Bump Go to v1.25.5\n\n### Bug fixes\n\n- Alerting: Fix contact points issue\n- Azure: Fix `dcount` aggregation\n- Azure: Fix `percentile` syntax",
"publishedAt": "2025-12-16T20:23:56Z"
},
{
"tag": "v12.1.5",
"title": "12.1.5",
"body": "### Features and enhancements\n\n- Alerting: Update alerting dependency\n- Dependencies: Bump Go to v1.25.5\n\n### Bug fixes\n\n- Alerting: Fix contact points issue\n- Azure: Fix `dcount` aggregation\n- Azure: Fix `percentile` syntax",
"publishedAt": "2025-12-16T19:17:01Z"
}
]
},
{
"name": "GSAP",
"url": "https://github.com/greensock/GSAP",
"npmName": "gsap",
"githubOwner": "greensock",
"githubRepo": "GSAP",
"releases": []
},
{
"name": "Hapi",
"url": "https://github.com/hapijs/hapi",
"npmName": "@hapi/hapi",
"githubOwner": "hapijs",
"githubRepo": "hapi",
"releases": []
},
{
"name": "Headless UI",
"url": "https://github.com/tailwindlabs/headlessui",
"npmName": "@headlessui/react",
"githubOwner": "tailwindlabs",
"githubRepo": "headlessui",
"releases": []
},
{
"name": "HeroUI (previously NextUI)",
"url": "https://github.com/heroui-inc/heroui",
"npmName": "@heroui/react",
"githubOwner": "heroui-inc",
"githubRepo": "heroui",
"releases": []
},
{
"name": "Hono",
"url": "https://github.com/honojs/hono",
"npmName": null,
"githubOwner": "honojs",
"githubRepo": "hono",
"releases": []
},
{
"name": "HTMX",
"url": "https://github.com/bigskysoftware/htmx",
"npmName": null,
"githubOwner": "bigskysoftware",
"githubRepo": "htmx",
"releases": []
},
{
"name": "Jest",
"url": "https://github.com/jestjs/jest",
"npmName": "jest",
"githubOwner": "jestjs",
"githubRepo": "jest",
"releases": []
},
{
"name": "Jotai",
"url": "https://github.com/pmndrs/jotai",
"npmName": "jotai",
"githubOwner": "pmndrs",
"githubRepo": "jotai",
"releases": []
},
{
"name": "Knex",
"url": "https://github.com/knex/knex",
"npmName": "knex",
"githubOwner": "knex",
"githubRepo": "knex",
"releases": []
},
{
"name": "Koa",
"url": "https://github.com/koajs/koa",
"npmName": "koa",
"githubOwner": "koajs",
"githubRepo": "koa",
"releases": []
},
{
"name": "Kubernetes",
"url": "https://github.com/kubernetes/kubernetes",
"npmName": null,
"githubOwner": "kubernetes",
"githubRepo": "kubernetes",
"releases": [
{
"tag": "v1.35.0",
"title": "Kubernetes v1.35.0",
"body": "See the [CHANGELOG](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.35.md) for more details.",
"publishedAt": "2025-12-17T20:01:55Z"
},
{
"tag": "v1.32.11",
"title": "Kubernetes v1.32.11",
"body": "See the [CHANGELOG](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.32.md) for more details.",
"publishedAt": "2025-12-16T21:28:50Z"
},
{
"tag": "v1.35.0-rc.1",
"title": "Kubernetes v1.35.0-rc.1",
"body": "See the [CHANGELOG](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.35.md) for more details.",
"publishedAt": "2025-12-09T19:13:00Z"
}
]
},
{
"name": "LangChain.js",
"url": "https://github.com/langchain-ai/langchainjs",
"npmName": "langchain",
"githubOwner": "langchain-ai",
"githubRepo": "langchainjs",
"releases": []
},
{
"name": "Lerna",
"url": "https://github.com/lerna/lerna",
"npmName": "lerna",
"githubOwner": "lerna",
"githubRepo": "lerna",
"releases": []
},
{
"name": "Lit",
"url": "https://github.com/lit/lit",
"npmName": "lit",
"githubOwner": "lit",
"githubRepo": "lit",
"releases": []
},
{
"name": "Lodash",
"url": "https://github.com/lodash/lodash",
"npmName": "lodash",
"githubOwner": "lodash",
"githubRepo": "lodash",
"releases": []
},
{
"name": "Magic UI",
"url": "https://github.com/magicuidesign/magicui",
"npmName": null,
"githubOwner": "magicuidesign",
"githubRepo": "magicui",
"releases": []
},
{
"name": "Mantine",
"url": "https://github.com/mantinedev/mantine",
"npmName": null,
"githubOwner": "mantinedev",
"githubRepo": "mantine",
"releases": []
},
{
"name": "MobX",
"url": "https://github.com/mobxjs/mobx",
"npmName": "mobx",
"githubOwner": "mobxjs",
"githubRepo": "mobx",
"releases": []
},
{
"name": "Mocha",
"url": "https://github.com/mochajs/mocha",
"npmName": "mocha",
"githubOwner": "mochajs",
"githubRepo": "mocha",
"releases": []
},
{
"name": "Mock Service Worker",
"url": "https://github.com/mswjs/msw",
"npmName": "msw",
"githubOwner": "mswjs",
"githubRepo": "msw",
"releases": []
},
{
"name": "Mongoose",
"url": "https://github.com/Automattic/mongoose",
"npmName": "mongoose",
"githubOwner": "Automattic",
"githubRepo": "mongoose",
"releases": []
},
{
"name": "MUI",
"url": "https://github.com/mui/material-ui",
"npmName": null,
"githubOwner": "mui",
"githubRepo": "material-ui",
"releases": []
},
{
"name": "NestJS",
"url": "https://github.com/nestjs/nest",
"npmName": "@nestjs/core",
"githubOwner": "nestjs",
"githubRepo": "nest",
"releases": []
},
{
"name": "Next.js",
"url": "https://github.com/vercel/next.js",
"npmName": "next",
"githubOwner": "vercel",
"githubRepo": "next.js",
"releases": [
{
"tag": "v16.2.0-canary.3",
"title": "v16.2.0-canary.3",
"body": "### Core Changes\n\n- Remove `deploymentId` from App Router `RenderOptsPartial`\n- feat: implement LRU cache with invocation ID scoping for minimal mode response cache",
"publishedAt": "2026-01-22T19:02:23Z"
},
{
"tag": "v16.2.0-canary.2",
"title": "v16.2.0-canary.2",
"body": "### Core Changes\n\n- stabilize browser log forward options\n- [devtools] Wrap long file names of stack frames in the error overlay\n- [devtools] Fix notch coloring of error overlay in forced colors mode",
"publishedAt": "2026-01-22T15:14:36Z"
},
{
"tag": "v16.2.0-canary.1",
"title": "v16.2.0-canary.1",
"body": "### Core Changes\n\n- fix: preserve cache behavior for PPR fallback shells with root params\n- Upgrade React from `d2908752-20260119` to `b546603b-20260121`",
"publishedAt": "2026-01-21T23:40:53Z"
}
]
},
{
"name": "Nitro",
"url": "https://github.com/nitrojs/nitro",
"npmName": null,
"githubOwner": "nitrojs",
"githubRepo": "nitro",
"releases": []
},
{
"name": "Node Test Runner",
"url": "https://github.com/nodejs/node",
"npmName": null,
"githubOwner": "nodejs",
"githubRepo": "node",
"releases": [
{
"tag": "v25.4.0",
"title": "2026-01-19, Version 25.4.0 (Current), @RafaelGSS",
"body": "### Notable Changes\n\n* cli: add --require-module/--no-require-module\n* cli: mark --heapsnapshot-near-heap-limit as stable\n* crypto: update root certificates to NSS 3.117\n* events: repurpose `events.listenerCount()` to accept EventTargets\n* http: add http.setGlobalProxyFromEnv()\n* module: mark require(esm) as stable\n* module: mark module compile cache as stable\n* module: allow subpath imports that start with `#/`\n* process: preserve AsyncLocalStorage in queueMicrotask only when needed\n* stream: do not pass `readable.compose()` output via `Readable.from()`\n* util: add convertProcessSignalToExitCode utility\n* v8: mark v8.queryObjects() as stable",
"publishedAt": "2026-01-19T17:05:28Z"
},
{
"tag": "v25.3.0",
"title": "2026-01-13, Version 25.3.0 (Current), @RafaelGSS",
"body": "This is a security release.\n\n### Notable Changes\n\n* (CVE-2025-59465) add TLSSocket default error handler\n* (CVE-2026-21636) add network check on pipe_wrap connect\n* (CVE-2025-55130) require full read and write to symlink APIs\n* (CVE-2025-55132) disable futimes when permission model is enabled\n* (CVE-2025-59466) rethrow stack overflow exceptions in async_hooks\n* (CVE-2025-55131) refactor unsafe buffer creation to remove zero-fill toggle\n* (CVE-2026-21637) route callback exceptions through error handlers",
"publishedAt": "2026-01-13T13:58:05Z"
},
{
"tag": "v24.13.0",
"title": "2026-01-13, Version 24.13.0 'Krypton' (LTS), @marco-ippolito",
"body": "This is a security release.\n\n### Notable Changes\n\n* (CVE-2025-59465) add TLSSocket default error handler\n* (CVE-2025-55132) disable futimes when permission model is enabled\n* (CVE-2025-55130) require full read and write to symlink APIs\n* (CVE-2025-59466) rethrow stack overflow exceptions in async_hooks\n* (CVE-2025-55131) refactor unsafe buffer creation to remove zero-fill toggle\n* (CVE-2026-21637) route callback exceptions through error handlers",
"publishedAt": "2026-01-13T13:57:24Z"
}
]
},
{
"name": "Nuxt",
"url": "https://github.com/nuxt/nuxt",
"npmName": "nuxt",
"githubOwner": "nuxt",
"githubRepo": "nuxt",
"releases": []
},
{
"name": "Nx",
"url": "https://github.com/nrwl/nx",
"npmName": "nx",
"githubOwner": "nrwl",
"githubRepo": "nx",
"releases": []
},
{
"name": "OpenAI Node SDK",
"url": "https://github.com/openai/openai-node",
"npmName": "openai",
"githubOwner": "openai",
"githubRepo": "openai-node",
"releases": []
},
{
"name": "OpenTelemetry Specification",
"url": "https://github.com/open-telemetry/opentelemetry-specification",
"npmName": null,
"githubOwner": "open-telemetry",
"githubRepo": "opentelemetry-specification",
"releases": [
{
"tag": "v1.53.0",
"title": "v1.53.0",
"body": "### Metrics\n\n- Stabilize part of `Enabled` SDK for synchronous instruments.\n\n### Logs\n\n- Add optional Ergonomic API.\n\n### SDK Configuration\n\n- Declarative configuration: clarify default behavior and validation requirements\n- Declarative configuration: add optional programmatic customization to `create`\n\n### Common\n\n- Stabilize complex `AnyValue` attribute value types and related attribute limits.",
"publishedAt": "2026-01-09T17:00:08Z"
},
{
"tag": "v1.52.0",
"title": "Release 1.52.0",
"body": "## Context\n\n- Make the W3C randomness flag required.\n\n## Traces\n\n- Deprecate Zipkin exporter document\n- Add spec for `AlwaysRecord` sampler\n\n## Metrics\n\n- Stabilize `Enabled` API for synchronous instruments.\n\n## Logs\n\n- Stabilize `LogRecordProcessor.Enabled`.",
"publishedAt": "2025-12-12T17:20:16Z"
},
{
"tag": "v1.51.0",
"title": "Release 1.51.0",
"body": "## Metrics\n\n- `AlignedHistogramBucketExemplarReservoir` SHOULD use a time-weighted algorithm.\n\n## Profiles\n\n- Document the profiles signal.\n\n## Common\n\n- Extend the set of attribute value types to support more complex data structures.",
"publishedAt": "2025-11-17T14:18:03Z"
}
]
},
{
"name": "Parcel",
"url": "https://github.com/parcel-bundler/parcel",
"npmName": "parcel-bundler",
"githubOwner": "parcel-bundler",
"githubRepo": "parcel",
"releases": []
},
{
"name": "Playwright",
"url": "https://github.com/microsoft/playwright",
"npmName": "playwright",
"githubOwner": "microsoft",
"githubRepo": "playwright",
"releases": [
{
"tag": "v1.57.0",
"title": "v1.57.0",
"body": "## Speedboard\n\nIn HTML reporter, there's a new tab we call \"Speedboard\" - it shows you all your executed tests sorted by slowness.\n\n## Chrome for Testing\n\nStarting with this release, Playwright switches from Chromium to using Chrome for Testing builds.\n\n## Waiting for webserver output\n\n`testConfig.webServer` added a `wait` field. Pass a regular expression, and Playwright will wait until the webserver logs match it.\n\n## Breaking Change\n\nAfter 3 years of being deprecated, we removed `Page#accessibility` from our API.\n\n## Browser Versions\n- Chromium 143.0.7499.4\n- Mozilla Firefox 144.0.2\n- WebKit 26.0",
"publishedAt": "2025-11-25T11:16:13Z"
},
{
"tag": "v1.56.1",
"title": "v1.56.1",
"body": "## Highlights\n\n- chore: allow local-network-access permission in chromium\n- fix(agents): remove workspaceFolder ref from vscode mcp\n- chore: rename agents to test agents\n- chore(mcp): fallback to cwd when resolving test config\n\n## Browser Versions\n- Chromium 141.0.7390.37\n- Mozilla Firefox 142.0.1\n- WebKit 26.0",
"publishedAt": "2025-10-17T00:50:36Z"
},
{
"tag": "v1.56.0",
"title": "v1.56.0",
"body": "## Playwright Agents\n\nIntroducing Playwright Agents, three custom agent definitions designed to guide LLMs through the core process of building a Playwright test.\n\n## New APIs\n- New methods `page.consoleMessages()` and `page.pageErrors()` for retrieving the most recent console messages from the page\n- New method `page.requests()` for retrieving the most recent network requests from the page\n\n## Browser Versions\n- Chromium 141.0.7390.37\n- Mozilla Firefox 142.0.1\n- WebKit 26.0",
"publishedAt": "2025-10-06T14:53:30Z"
}
]
},
{
"name": "pnpm",
"url": "https://github.com/pnpm/pnpm",
"npmName": null,
"githubOwner": "pnpm",
"githubRepo": "pnpm",
"releases": []
},
{
"name": "PostCSS",
"url": "https://github.com/postcss/postcss",
"npmName": "postcss",
"githubOwner": "postcss",
"githubRepo": "postcss",
"releases": []
},
{
"name": "Preact",
"url": "https://github.com/preactjs/preact",
"npmName": "preact",
"githubOwner": "preactjs",
"githubRepo": "preact",
"releases": []
},
{
"name": "Prettier",
"url": "https://github.com/prettier/prettier",
"npmName": "prettier",
"githubOwner": "prettier",
"githubRepo": "prettier",
"releases": []
},
{
"name": "Prisma",
"url": "https://github.com/prisma/prisma",
"npmName": "prisma",
"githubOwner": "prisma",
"githubRepo": "prisma",
"releases": [
{
"tag": "7.3.0",
"title": "7.3.0",
"body": "## ORM\n\n- Fast and Small Query Compilers with new `compilerBuild` option (`fast` or `small`)\n- Bypass the Query Compiler for Raw Queries\n- Update MSSQL to v12.2.0\n- Pin better-sqlite3 version to avoid SQLite bug\n- Revert `@map` enums to v6.19.0 behavior\n- Cast BigInt to text in JSON aggregation",
"publishedAt": "2026-01-21T16:09:13Z"
},
{
"tag": "6.19.2",
"title": "6.19.2",
"body": "Patch release fixing an issue with Prisma Accelerate support in some edge runtime configurations when the `@prisma/client/edge` entrypoint is not being used.",
"publishedAt": "2026-01-13T12:09:19Z"
},
{
"tag": "7.2.0",
"title": "7.2.0",
"body": "## Highlights\n\n- feat: add `sqlcommenter-query-insights` plugin\n- feat(migrate): add `-url` param for `db pull`, `db push`, `migrate dev`\n- feat(config): allow undefined URLs in e.g. `prisma generate`\n- feat(cli): customize `prisma init` based on the JS runtime (Bun vs others)",
"publishedAt": "2025-12-17T15:12:49Z"
}
]
},
{
"name": "Prometheus",
"url": "https://github.com/prometheus/prometheus",
"npmName": null,
"githubOwner": "prometheus",
"githubRepo": "prometheus",
"releases": [
{
"tag": "v3.5.1",
"title": "3.5.1 / 2026-01-07",
"body": "This is the current \"Long Term Support\" release.\nNo code changes since 3.5.0, just some dependency updates:\n* Docker library updated from 28.2.2 to 28.5.2\n* Built with Go 1.24.11",
"publishedAt": "2026-01-22T13:50:27Z"
},
{
"tag": "v3.9.1",
"title": "3.9.1 / 2026-01-07",
"body": "- [BUGFIX] Agent: fix crash shortly after startup from invalid type of object\n- [BUGFIX] Scraping: fix relabel keep/drop not working",
"publishedAt": "2026-01-07T17:05:53Z"
},
{
"tag": "v3.9.0",
"title": "3.9.0 / 2026-01-06",
"body": "## Note for users of Native Histograms\n\nIn version 3.9, Native Histograms is no longer experimental, and the feature flag `native-histogram` has no effect.\n\n## Changelog\n\n- [CHANGE] Native Histograms are no longer experimental!\n- [FEATURE] API: Add /api/v1/features for clients to understand which features are supported\n- [FEATURE] Promtool: Add `start_timestamp` field for unit tests\n- [ENHANCEMENT] UI: Add graph option to start the chart's Y axis at zero",
"publishedAt": "2026-01-07T10:23:50Z"
}
]
},
{
"name": "Puppeteer",
"url": "https://github.com/puppeteer/puppeteer",
"npmName": "puppeteer",
"githubOwner": "puppeteer",
"githubRepo": "puppeteer",
"releases": []
},
{
"name": "Quasar",
"url": "https://github.com/quasarframework/quasar",
"npmName": null,
"githubOwner": "quasarframework",
"githubRepo": "quasar",
"releases": []
},
{
"name": "Qwik",
"url": "https://github.com/QwikDev/qwik",
"npmName": null,
"githubOwner": "QwikDev",
"githubRepo": "qwik",
"releases": []
},
{
"name": "Radix",
"url": "https://github.com/radix-ui/primitives",
"npmName": "@radix-ui",
"githubOwner": "radix-ui",
"githubRepo": "primitives",
"releases": []
},
{
"name": "React",
"url": "https://github.com/facebook/react",
"npmName": "react",
"githubOwner": "facebook",
"githubRepo": "react",
"releases": [
{
"tag": "v19.1.4",
"title": "19.1.4 (December 11th, 2025)",
"body": "## React Server Components\n\n- Add extra loop protection to React Server Functions (@sebmarkbage #35351)",
"publishedAt": "2025-12-12T00:11:45Z"
},
{