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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152
|
node-babel7 (7.20.15+ds1+~cs214.269.168-3+deb12u2) bookworm; urgency=medium
* Team upload
* Improve tsc-workaround patch, fixing compilation against
nodejs 18.19.0+dfsg-6~deb12u1. Closes: #1068933.
[ Andreas Beckmann ]
* Backport Breaks+Replaces fixes from 7.20.15+ds1+~cs214.269.168-4.
[ Yadd ]
* Add missing Breaks+Replaces against all node-babel-* that were in Debian 10
(Closes: #1037234)
-- Jérémy Lal <kapouer@melix.org> Sun, 16 Jun 2024 01:47:21 +0200
node-babel7 (7.20.15+ds1+~cs214.269.168-3+deb12u1) bookworm-security; urgency=medium
* Team upload
* Only evaluate own String/Number/Math methods
(Closes: #1053880, CVE-2023-45133)
-- Yadd <yadd@debian.org> Fri, 13 Oct 2023 18:02:05 +0400
node-babel7 (7.20.15+ds1+~cs214.269.168-3) unstable; urgency=medium
* Team upload
* Add Breaks+Replaces against node-babel-code-frame << 7
(Closes: #1036942)
-- Yadd <yadd@debian.org> Tue, 30 May 2023 12:24:08 +0400
node-babel7 (7.20.15+ds1+~cs214.269.168-2) unstable; urgency=medium
* Update minimum version of node-regexpu-core to 5.2.1~.
packages/babel-helper-create-regexp-features-plugin/package.json has
"regexpu-core": "^5.2.1" and not adding it breaks partial upgrades.
-- Pirate Praveen <praveen@debian.org> Thu, 16 Mar 2023 17:52:46 +0530
node-babel7 (7.20.15+ds1+~cs214.269.168-1) unstable; urgency=medium
* Team upload
* Update lintian override info format in d/source/lintian-overrides
on line 2-11, 13-24.
* Update standards version to 4.6.2, no changes needed.
* New upstream version 7.20.15+ds1+~cs214.269.168
-- Yadd <yadd@debian.org> Fri, 17 Feb 2023 12:05:54 +0400
node-babel7 (7.20.14+ds1+~cs214.269.168-1) unstable; urgency=medium
* Team upload
* New upstream version 7.20.14+ds1+~cs214.269.168
-- Yadd <yadd@debian.org> Tue, 31 Jan 2023 08:19:48 +0400
node-babel7 (7.20.12+ds1+~cs214.250.188-1) unstable; urgency=medium
* Team upload
* New upstream version 7.20.12+ds1+~cs214.250.188
* Unfuzz patches
-- Yadd <yadd@debian.org> Tue, 10 Jan 2023 09:01:19 +0400
node-babel7 (7.20.11+ds1+~cs214.250.188-1) unstable; urgency=medium
* Team upload
* Update description
* New upstream version 7.20.11+ds1+~cs214.250.188
* Unfuzz patches
-- Yadd <yadd@debian.org> Tue, 03 Jan 2023 07:03:40 +0400
node-babel7 (7.20.6+ds1+~cs214.250.188-1) unstable; urgency=medium
* Team upload
* Drop embedded rollup-plugin-polyfill-node
* Update lintian overrides
* New upstream version 7.20.6+ds1+~cs214.250.188
* Refresh patches
-- Yadd <yadd@debian.org> Tue, 29 Nov 2022 13:56:14 +0100
node-babel7 (7.20.4+ds1+~cs214.250.187-1) unstable; urgency=medium
* Team upload
* New upstream version 7.20.4+ds1+~cs214.250.187
* Unfuzz patches
-- Yadd <yadd@debian.org> Wed, 09 Nov 2022 09:27:08 +0100
node-babel7 (7.20.1+ds1+~cs214.250.186-2) unstable; urgency=medium
* Team upload
* Add fix for rollup 3
-- Yadd <yadd@debian.org> Fri, 04 Nov 2022 06:11:27 +0100
node-babel7 (7.20.1+ds1+~cs214.250.186-1) unstable; urgency=medium
* Team upload
* New upstream version 7.20.1+ds1+~cs214.250.186
-- Yadd <yadd@debian.org> Thu, 03 Nov 2022 11:09:59 +0100
node-babel7 (7.20.0+ds1+~cs214.250.186-1) unstable; urgency=medium
* Team upload
[ Debian Janitor ]
* Apply multi-arch hints. + node-babel7-debug: Add Multi-Arch: foreign.
[ Yadd ]
* New upstream version 7.20.0+ds1+~cs214.250.186
* Refresh patches
* Update build: drop old hook
-- Yadd <yadd@debian.org> Fri, 28 Oct 2022 21:42:39 +0200
node-babel7 (7.19.6+ds1+~cs214.250.186-1) unstable; urgency=medium
* Team upload
* New upstream version 7.19.6+ds1+~cs214.250.186
* Unfuzz patches
-- Yadd <yadd@debian.org> Sat, 22 Oct 2022 11:05:48 +0200
node-babel7 (7.19.5+ds1+~cs214.250.186-1) unstable; urgency=medium
* Team upload
* New upstream version 7.19.5+ds1+~cs214.250.186
-- Yadd <yadd@debian.org> Thu, 13 Oct 2022 08:51:21 +0200
node-babel7 (7.19.3+ds1+~cs214.250.186-3) unstable; urgency=medium
* Team upload
* Source-only upload
-- Yadd <yadd@debian.org> Sat, 01 Oct 2022 14:03:12 +0200
node-babel7 (7.19.3+ds1+~cs214.250.186-2) unstable; urgency=medium
* Team upload
* Move source-map files into separate node-babel7-debug
-- Yadd <yadd@debian.org> Fri, 30 Sep 2022 18:56:19 +0200
node-babel7 (7.19.3+ds1+~cs214.250.186-1) unstable; urgency=medium
* Team upload
* New upstream version 7.19.3+ds1+~cs214.250.186
* Refresh patches
* Update typescript workarounds
-- Yadd <yadd@debian.org> Fri, 30 Sep 2022 12:35:26 +0200
node-babel7 (7.19.2+ds1+~cs214.250.186-2) unstable; urgency=medium
* Team upload
* Update lintian overrides
* Make build reproducible
-- Yadd <yadd@debian.org> Tue, 27 Sep 2022 15:53:48 +0200
node-babel7 (7.19.2+ds1+~cs214.250.186-1) unstable; urgency=medium
* Team upload
* Exclude .yarn from import
* Don't launch rebuild-itself test on armel
* New upstream version 7.19.2+ds1+~cs214.250.186
(updates @types/babel__traverse)
-- Yadd <yadd@debian.org> Tue, 27 Sep 2022 06:38:22 +0200
node-babel7 (7.19.2+~cs214.250.185-2) unstable; urgency=medium
* Team upload
* Revert 7.18.13+~cs214.250.184-3 changes (cd5115c2): was a
@rollup/plugin-node-resolve regression
* Fix autopkgtest
-- Yadd <yadd@debian.org> Mon, 19 Sep 2022 09:43:29 +0200
node-babel7 (7.19.2+~cs214.250.185-1) unstable; urgency=medium
* Team upload
* Render build partially reproducible
* New upstream version 7.19.2+~cs214.250.185
* Refresh patches
-- Yadd <yadd@debian.org> Thu, 15 Sep 2022 10:28:54 +0200
node-babel7 (7.19.0+~cs214.250.185-1) unstable; urgency=medium
* Team upload
* New upstream version 7.19.0+~cs214.250.185
* Refresh patches
-- Yadd <yadd@debian.org> Wed, 14 Sep 2022 12:46:12 +0200
node-babel7 (7.18.13+~cs214.250.184-3) unstable; urgency=medium
* Team upload
* Add missing build dependency on dh-nodejs for command dh_nodejs_autodocs.
* Enable __proto__ in test, needed here for pkg-js-autopkgtest 0.15
* Build with an older @rollup/plugin-node-resolve (Closes: #1019685)
* Update debian/clean
-- Yadd <yadd@debian.org> Tue, 13 Sep 2022 15:33:06 +0200
node-babel7 (7.18.13+~cs214.250.184-2) unstable; urgency=medium
* Team upload
* Drop patch fix-terser-import, require terser >= 5
-- Yadd <yadd@debian.org> Mon, 05 Sep 2022 12:14:03 +0200
node-babel7 (7.18.13+~cs214.250.184-1) unstable; urgency=medium
* Team upload
* New upstream version 7.18.13+~cs214.250.184
-- Yadd <yadd@debian.org> Thu, 25 Aug 2022 07:02:41 +0200
node-babel7 (7.18.12+~cs214.250.184-1) unstable; urgency=medium
* Team upload
* New upstream version 7.18.12+~cs214.250.184
* Update patches
* Update build
* Add build dependencies to @types/fs-readdir-recursive and @types/types-v8flags
-- Yadd <yadd@debian.org> Tue, 09 Aug 2022 09:04:25 +0200
node-babel7 (7.18.9+~cs214.249.185-1) unstable; urgency=medium
* Team upload
* New upstream version 7.18.9+~cs214.249.185
* Embed @types/gensync
* Refresh patches
-- Yadd <yadd@debian.org> Tue, 19 Jul 2022 16:17:00 +0200
node-babel7 (7.18.8+~cs214.249.185-1) unstable; urgency=medium
* Team upload
* Simplify build using pkgjs-install-minimal
* New upstream version 7.18.8+~cs214.249.185
* Unfuzz patches
-- Yadd <yadd@debian.org> Sun, 10 Jul 2022 22:48:54 +0200
node-babel7 (7.18.7+~cs214.249.185-1) unstable; urgency=medium
* Team upload
* Fix babel-standalone: link @jridgewell/set-array and
@jridgewell/source-map during builb
* New upstream version 7.18.7+~cs214.249.185
-- Yadd <yadd@debian.org> Thu, 30 Jun 2022 06:51:43 +0200
node-babel7 (7.18.6+~cs214.249.185-1) unstable; urgency=medium
* Team upload
* New upstream version 7.18.6+~cs214.249.185
* Embed @types/charcodes
* Refresh patches
* Update build and fix links for recent @rollup/plugin-commonjs
-- Yadd <yadd@debian.org> Tue, 28 Jun 2022 17:55:30 +0200
node-babel7 (7.18.5+~cs214.249.185-1) unstable; urgency=medium
* Team upload
* New upstream version 7.18.5+~cs214.249.185
* Unfuzz patches
-- Yadd <yadd@debian.org> Thu, 16 Jun 2022 06:38:47 +0200
node-babel7 (7.18.4+~cs214.249.185-2) unstable; urgency=medium
* Team upload
* Declare compliance with policy 4.6.1
* Use terser, not uglifyjs.terser
* Build babel-standalone with babel 7.18
-- Yadd <yadd@debian.org> Tue, 07 Jun 2022 10:06:32 +0200
node-babel7 (7.18.4+~cs214.249.185-1) unstable; urgency=medium
* Team upload
* Use new node-babel-polyfills and drop related components
* New upstream version 7.18.4+~cs214.249.185
* Unfuzz patches
* Update tsc patch
* Require node-rollup-plugin-babel >= 5.3.1
* Update build modules
* Temporarily accept babel-standalone's build failures
-- Yadd <yadd@debian.org> Tue, 07 Jun 2022 08:15:02 +0200
node-babel7 (7.17.11+~cs214.263.190-2) unstable; urgency=medium
[ Yadd ]
* Drop useless build dependency to node-rollup-plugin-node-polyfills
[ Pirate Praveen ]
* Drop build dependency on deprecated node-gulp-util (unused)
-- Pirate Praveen <praveen@debian.org> Thu, 12 May 2022 22:57:38 +0530
node-babel7 (7.17.11+~cs214.263.190-1) unstable; urgency=medium
* Team upload
* Apply multi-arch hints (foreign)
* Update copyright
* Update lintian-overrides
* New upstream version 7.17.11+~cs214.263.190
* Refresh patches
* Update build modules
* Require node-ampproject-remapping >= 2.2~
* Update build
* Update copyright
-- Yadd <yadd@debian.org> Sun, 01 May 2022 09:12:07 +0200
node-babel7 (7.17.9+~cs214.260.191-2) unstable; urgency=medium
* Team upload
* Add dependencies to node-core-js-compat and node-core-js-pure
-- Yadd <yadd@debian.org> Tue, 26 Apr 2022 14:25:50 +0200
node-babel7 (7.17.9+~cs214.260.191-1) unstable; urgency=medium
* Team upload
* New upstream version 7.17.9+~cs214.260.191
* Refresh patches
* Ignore rollup warning during babel-standalone build
-- Yadd <yadd@debian.org> Sat, 09 Apr 2022 08:00:52 +0200
node-babel7 (7.17.8+~cs214.260.191-2) unstable; urgency=medium
* Team upload
* Fix pirates version
-- Yadd <yadd@debian.org> Tue, 22 Mar 2022 06:28:44 +0100
node-babel7 (7.17.8+~cs214.260.191-1) unstable; urgency=medium
* Team upload
* Simplfy debian/rules using new features from dh-sequence-nodejs 0.14.5
* New upstream version 7.17.8+~cs214.260.191 (updates babel and
@types/babel__core)
* Add patch for eslint-scope >= 7
* Fix autopkgtest
-- Yadd <yadd@debian.org> Mon, 21 Mar 2022 17:42:49 +0100
node-babel7 (7.17.7+~cs214.260.190-1) unstable; urgency=medium
* Team upload
* New upstream version 7.17.7+~cs214.260.190
* Build doc with dh-nodejs-autodocs
* Unfuzz patches
-- Yadd <yadd@debian.org> Thu, 17 Mar 2022 09:14:52 +0100
node-babel7 (7.17.6+~cs214.260.190-1) unstable; urgency=medium
* Team upload
* New upstream version 7.17.6+~cs214.260.190
-- Yadd <yadd@debian.org> Fri, 25 Feb 2022 14:26:19 +0100
node-babel7 (7.17.5+~cs214.260.190-1) unstable; urgency=medium
* Team upload
* New upstream version 7.17.5+~cs214.260.190
-- Yadd <yadd@debian.org> Sun, 20 Feb 2022 09:20:49 +0100
node-babel7 (7.17.4+~cs214.260.190-2) unstable; urgency=medium
* Team upload
* Fix CRLF/LF by removing .gitattributes, thanks to Jochen Spricherhof
* Allow babel-preset-moxy to require @babel/preset-env/lib/module-transformations
(Closes: #1006061)
-- Yadd <yadd@debian.org> Sat, 19 Feb 2022 09:24:48 +0100
node-babel7 (7.17.4+~cs214.260.190-1) unstable; urgency=medium
* Team upload
* New upstream version 7.17.4+~cs214.260.190
* Update tsc patch
* Require dh-sequence-nodejs 0.12.3 to build charcode using lerna.conf
* Require node-ampproject-remapping > 2.1
-- Yadd <yadd@debian.org> Thu, 17 Feb 2022 09:47:50 +0100
node-babel7 (7.17.2+~cs214.260.190-1) unstable; urgency=medium
* Team upload
* New upstream version 7.17.2+~cs214.260.190, updates:
+ babel 7.17.2
+ babel-plugin-polyfill-corejs3 0.5.2
* Add dependency to node-ampproject-remapping
* Update tsc patch
* Update tsc-workaround patch
* Map @ampproject/remapping into node_modules/ during build
-- Yadd <yadd@debian.org> Wed, 09 Feb 2022 18:25:39 +0100
node-babel7 (7.16.12+~cs214.260.189-2) unstable; urgency=medium
* Team upload
* Fix load-plugins-from-system-libraries patch (Closes: #1004540)
-- Yadd <yadd@debian.org> Tue, 01 Feb 2022 13:46:43 +0100
node-babel7 (7.16.12+~cs214.260.189-1) unstable; urgency=medium
* Team upload
* New upstream version 7.16.12+~cs214.260.189
* Update tsc patch
-- Yadd <yadd@debian.org> Thu, 27 Jan 2022 11:26:01 +0100
node-babel7 (7.16.10+~cs214.260.188-1) unstable; urgency=medium
* Team upload
* New upstream version 7.16.10+~cs214.260.188
* Refresh patches
* Embed import-meta-resolve for build only
-- Yadd <yadd@debian.org> Thu, 20 Jan 2022 08:18:38 +0100
node-babel7 (7.16.9+~cs214.260.184-1) unstable; urgency=medium
* Team upload
* New upstream version 7.16.9+~cs214.260.184
* Refresh patches
* Clean build modules
* Update copyright
-- Yadd <yadd@debian.org> Wed, 12 Jan 2022 08:58:37 +0100
node-babel7 (7.16.7+~cs214.260.184-1) unstable; urgency=medium
* Team upload
* New upstream version 7.16.7+~cs214.260.184
-- Yadd <yadd@debian.org> Mon, 03 Jan 2022 14:56:24 +0100
node-babel7 (7.16.6+ds1+~cs214.259.181-5) unstable; urgency=medium
* Team upload
* Use new pkg-js-autopkgtest features
* Fix @babel/standalone build
-- Yadd <yadd@debian.org> Sat, 01 Jan 2022 20:53:59 +0100
node-babel7 (7.16.6+ds1+~cs214.259.181-4) unstable; urgency=medium
* Team upload
* Source-only upload to allow migration
-- Yadd <yadd@debian.org> Sat, 25 Dec 2021 14:42:25 +0100
node-babel7 (7.16.6+ds1+~cs214.259.181-3) unstable; urgency=medium
* Team upload
* Back to unstable
-- Yadd <yadd@debian.org> Wed, 22 Dec 2021 17:43:34 +0100
node-babel7 (7.16.6+ds1+~cs214.259.181-2) experimental; urgency=medium
* Team upload
* Build @babel/standalone
-- Yadd <yadd@debian.org> Wed, 22 Dec 2021 09:15:42 +0100
node-babel7 (7.16.6+ds1+~cs214.259.181-1) experimental; urgency=medium
* Team upload
* Drop embedded node-babel-plugin-add-module-exports adn repack
(Closes: #1002292)
-- Yadd <yadd@debian.org> Wed, 22 Dec 2021 06:45:58 +0100
node-babel7 (7.16.6+~cs215.259.185-2) experimental; urgency=medium
* Team upload
* Clean build modules
* Add dependency to node-lodash-packages
(required by @babel/plugin-transform-modules-umd)
* Add fix for node-js-tokens ≥ 6
* Update build
-- Yadd <yadd@debian.org> Mon, 20 Dec 2021 17:22:27 +0100
node-babel7 (7.16.6+~cs215.259.185-1) experimental; urgency=medium
* Team upload
* Build components: add gulp-plumber
* Add build dependencies to node-clone-deep
* Update build dependencies
* Update build
* Patches:
+ refresh
+ update gulpfile (async patch)
+ fix some typescript false positives
* Update components to be able to build itself and keep all @babel/*
modules previously included to avoid regressions
* Use upstream patch for @rollup/plugin-commonjs (.yarn/patches)
* TO BE FIXED: @babel/standalone isn't built
-- Yadd <yadd@debian.org> Mon, 20 Dec 2021 08:51:49 +0100
node-babel7 (7.12.12+~cs150.141.84-8) unstable; urgency=medium
* Team upload
* Drop unneeded version dependency constraint
* Update nodejs dependency to nodejs:any
* Fix rollup warning due to node-rollup-plugin-replace update (fixes debci)
* Fix lintian overrides
-- Yadd <yadd@debian.org> Wed, 01 Dec 2021 14:53:58 +0100
node-babel7 (7.12.12+~cs150.141.84-7) unstable; urgency=medium
* Team upload
* Apply multi-arch hints (node-babel-standalone -> foreign)
* Update standards version to 4.6.0, no changes needed.
* Fix filenamemangle
* Fix GitHub tags regex
* Fix usr/bin links install for dh-sequence-nodejs ≥ 0.9.78~
-- Yadd <yadd@debian.org> Sat, 30 Oct 2021 09:12:23 +0200
node-babel7 (7.12.12+~cs150.141.84-6) unstable; urgency=medium
* Team upload
* Make build reproducible
-- Xavier Guimard <yadd@debian.org> Wed, 03 Feb 2021 06:31:56 +0100
node-babel7 (7.12.12+~cs150.141.84-5) unstable; urgency=medium
* Team upload
* Remove tsconfig.buildinfo files (makes build reproducible)
-- Xavier Guimard <yadd@debian.org> Mon, 01 Feb 2021 16:33:41 +0100
node-babel7 (7.12.12+~cs150.141.84-4) unstable; urgency=medium
* Team upload
[ Pirate Praveen ]
* Update minimum versions of dependencies
[ Xavier Guimard ]
* Install manpages without alternatives (Closes: #979551)
-- Xavier Guimard <yadd@debian.org> Wed, 27 Jan 2021 22:47:58 +0100
node-babel7 (7.12.12+~cs150.141.84-3) unstable; urgency=medium
* Team upload
* Remove useless build dependency to node-typescript-types (Closes: #979788)
-- Xavier Guimard <yadd@debian.org> Fri, 22 Jan 2021 19:07:09 +0100
node-babel7 (7.12.12+~cs150.141.84-2) unstable; urgency=medium
* Team upload
* Source-only upload
-- Xavier Guimard <yadd@debian.org> Sat, 09 Jan 2021 07:39:08 +0100
node-babel7 (7.12.12+~cs150.141.84-1) unstable; urgency=medium
* Team upload
* New upstream version 7.12.12+~cs150.141.84
* Build a really "standalone" @babel/standalone
* Refresh patches
* Provides separated node-babel7-runtime and node-babel7-standalone
* Update lintian overrides
-- Xavier Guimard <yadd@debian.org> Tue, 05 Jan 2021 13:28:05 +0100
node-babel7 (7.12.11+~cs150.141.84-3) unstable; urgency=medium
* Team upload
* Build typescript definitions (Closes: #978341)
-- Xavier Guimard <yadd@debian.org> Sun, 03 Jan 2021 18:08:42 +0100
node-babel7 (7.12.11+~cs150.141.84-2) unstable; urgency=medium
* Team upload
* Require pkg-js-tools ≥ 0.9.58~ (Closes: #977677)
-- Xavier Guimard <yadd@debian.org> Fri, 18 Dec 2020 22:34:20 +0100
node-babel7 (7.12.11+~cs150.141.84-1) unstable; urgency=medium
* Team upload
* New upstream version 7.12.11+~cs150.141.84
* Refresh patches
* Embed rollup-plugin-dts in build only modules
* Add build dependency to node-typescript
* Update lintian overrides
-- Xavier Guimard <yadd@debian.org> Thu, 17 Dec 2020 12:27:51 +0100
node-babel7 (7.12.10+~cs150.141.83-3) unstable; urgency=medium
* Team upload
* Install /usr/bin/babeljs-parser
* Build manpages using help2man
* Remove useless dependency to node-environment-flags (Closes: #977232)
-- Xavier Guimard <yadd@debian.org> Thu, 17 Dec 2020 08:46:12 +0100
node-babel7 (7.12.10+~cs150.141.83-2) unstable; urgency=medium
* Team upload
* Remove some build modules, and add build dependencies to:
+ node-cheerio
+ node-jest-worker
+ node-jsdom
+ node-make-error
+ node-rollup-plugin-inject
+ node-rollup-plugin-node-polyfills
+ node-rollup-plugin-terser
+ node-serialize-javascript
* Build @babel/standalone (Closes: #977485)
-- Xavier Guimard <yadd@debian.org> Thu, 17 Dec 2020 03:53:31 +0100
node-babel7 (7.12.10+~cs150.141.83-1) unstable; urgency=medium
* Team upload
* Add ctype=nodejs to component(s)
* New upstream version 7.12.10+~cs150.141.83
* Refresh patches
* Improve patch load-plugins-from-system-libraries
-- Xavier Guimard <yadd@debian.org> Sat, 12 Dec 2020 17:17:39 +0100
node-babel7 (7.12.9+~cs150.130.99-1) unstable; urgency=medium
* Team upload
[ lintian-brush ]
* Fix field name case in debian/tests/control (Test-command => Test-Command).
* Set upstream metadata fields: Security-Contact.
[ Xavier Guimard ]
* Declare compliance with policy 4.5.1
* New upstream version 7.12.9+~cs150.130.99
Updates:
+ babel 7.12.9
+ @types/babel 7.4.0
* Refresh patches
* Remove useless dependencies
* Update require test
* Update lintian overrides
-- Xavier Guimard <yadd@debian.org> Sat, 28 Nov 2020 17:04:44 +0100
node-babel7 (7.12.6+~cs150.126.101-1) unstable; urgency=medium
* Team upload
* New upstream version 7.12.6+~cs150.126.101:
+ Update babel itself to 7.12.6
+ Embed @babel/plugin-syntax-import-meta
* Add dependencies to node-make-dir and node-quick-lru
-- Xavier Guimard <yadd@debian.org> Sun, 08 Nov 2020 13:01:05 +0100
node-babel7 (7.12.4+~cs142.117.99-1) unstable; urgency=medium
* Team upload
* Embed typescript declarations
* New upstream version 7.12.4+~cs142.117.99 (no other changes)
-- Xavier Guimard <yadd@debian.org> Tue, 27 Oct 2020 13:22:25 +0100
node-babel7 (7.12.4+~cs86.100.54-1) unstable; urgency=medium
* Team upload
* Embed babel-preset-current-node-syntax and @babel/plugin-syntax-bigint
* New upstream version 7.12.4+~cs86.100.54 (no other changes)
-- Xavier Guimard <yadd@debian.org> Tue, 27 Oct 2020 08:50:20 +0100
node-babel7 (7.12.4+~cs79.91.47-1) unstable; urgency=medium
* Team upload
* Use dh-sequence-nodejs
* New upstream version 7.12.4+~cs79.91.47
+ Updates babel itself to 7.12.4
+ Embed new components:
- @babel/plugin-syntax-logical-assignment-operators
- @babel/plugin-syntax-numeric-separator
* Update copyright
-- Xavier Guimard <yadd@debian.org> Wed, 21 Oct 2020 12:01:35 +0200
node-babel7 (7.11.6+~cs65.71.39-1) unstable; urgency=medium
* Team upload
* Increase alternative level to take precedence over node-babel 6
* New upstream version 7.11.6+~cs65.71.39
* Update node-rollup-plugin* build dependencies to use new @rollup/plugin*
* Refresh patches
* Embed rollup-plugin-inject and rollup-plugin-node-polyfills for build only
-- Xavier Guimard <yadd@debian.org> Thu, 24 Sep 2020 22:19:56 +0200
node-babel7 (7.11.4+~cs65.71.38-1) unstable; urgency=medium
* Team upload
* New upstream version 7.11.4+~cs65.71.38
* Refresh patches
-- Xavier Guimard <yadd@debian.org> Wed, 26 Aug 2020 11:31:24 +0200
node-babel7 (7.11.3+~cs65.71.38-1) unstable; urgency=medium
* Team upload
* New upstream version 7.11.3+~cs65.71.38
* Refresh patches
-- Xavier Guimard <yadd@debian.org> Sun, 16 Aug 2020 07:48:41 +0200
node-babel7 (7.11.0+~cs65.71.38-1) unstable; urgency=medium
* Team upload
* New upstream version 7.11.0+~cs65.71.38
* Refresh patches
* Update lintian overrides
* Bump debhelper compatibility level to 13
-- Xavier Guimard <yadd@debian.org> Fri, 14 Aug 2020 07:33:27 +0200
node-babel7 (7.10.5+~cs65.71.38-4) unstable; urgency=medium
* Update minimum version of node-lodash to fix ftbfs
-- Pirate Praveen <praveen@debian.org> Tue, 28 Jul 2020 13:13:36 +0530
node-babel7 (7.10.5+~cs65.71.38-3) unstable; urgency=medium
* Switch to yarnpkg from npm for bootstrap build (npm no longer works because
package.json uses yarn specific features)
* Binary included upload with DEB_BUILD_PROFILES=pkg.node-babel7.yarnpkg
(Closes: #965353)
* Add git as conditional dependency in bootstrapping build profile
* Force yarnpkg in component package.json
-- Pirate Praveen <praveen@debian.org> Sun, 26 Jul 2020 22:26:35 +0530
node-babel7 (7.10.5+~cs65.71.38-2) unstable; urgency=medium
* Team upload
* Add "Provides" field to declare babeljs and all installed modules
(See: #965173)
-- Xavier Guimard <yadd@debian.org> Sun, 19 Jul 2020 09:56:24 +0200
node-babel7 (7.10.5+~cs65.71.38-1) unstable; urgency=medium
* Team upload
* New upstream version 7.10.5+~cs65.71.38
* Refresh patches
-- Xavier Guimard <yadd@debian.org> Thu, 16 Jul 2020 22:17:16 +0200
node-babel7 (7.10.4+~cs65.71.38-1) unstable; urgency=medium
* Team upload
* Remove duplicate eslint-plugin-babel-plugin component
* New upstream version 7.10.4+~cs65.71.38
* Refresh patches
* Install @babel/eslint-* modules
* Update lintian overrides
-- Xavier Guimard <yadd@debian.org> Wed, 01 Jul 2020 22:40:22 +0200
node-babel7 (7.10.2+~cs66.71.39-1) unstable; urgency=medium
* Team upload
* New upstream version 7.10.2 (no component changes)
* Refresh patches
* Update lintian overrides
-- Xavier Guimard <yadd@debian.org> Sat, 13 Jun 2020 17:25:28 +0200
node-babel7 (7.9.6+~cs66.71.39-8) unstable; urgency=medium
* Team upload
* Source only upload
-- Xavier Guimard <yadd@debian.org> Sat, 13 Jun 2020 14:25:32 +0200
node-babel7 (7.9.6+~cs66.71.39-7) unstable; urgency=medium
* Team upload
* Update debian/clean
* Update core-js patch (fix node-string-decoder build)
-- Xavier Guimard <yadd@debian.org> Fri, 12 Jun 2020 08:04:29 +0200
node-babel7 (7.9.6+~cs66.71.39-6) unstable; urgency=medium
* Team upload
* Back to unstable
-- Xavier Guimard <yadd@debian.org> Fri, 12 Jun 2020 07:00:08 +0200
node-babel7 (7.9.6+~cs66.71.39-5) experimental; urgency=medium
* Fix autopkgtest
-- Xavier Guimard <yadd@debian.org> Sat, 30 May 2020 22:33:58 +0200
node-babel7 (7.9.6+~cs66.71.39-4) experimental; urgency=medium
* Team upload
* Add patch for core-js ≥ 3
-- Xavier Guimard <yadd@debian.org> Wed, 20 May 2020 09:26:09 +0200
node-babel7 (7.9.6+~cs66.71.39-3) experimental; urgency=medium
* Team upload
* Require node-babel7 ≥ 7.9.6 to build
* Fix large number patch
* Fix build profile
* Fix pirates build in npm profile
-- Xavier Guimard <yadd@debian.org> Tue, 19 May 2020 23:06:33 +0200
node-babel7 (7.9.6+~cs66.71.39-2) experimental; urgency=medium
* Team upload
* Fix bad transpilation for large numbers
-- Xavier Guimard <yadd@debian.org> Tue, 19 May 2020 14:53:11 +0200
node-babel7 (7.9.6+~cs66.71.39-1) experimental; urgency=medium
* Team upload
* Embed components: @babel/preset-modules babel-plugin-dynamic-import-node gensync
* Refresh patches
* Update dependencies:
+ add build dependencies to node-leven, node-rollup-plugin-commonjs,
node-rollup-plugin-json
+ require node-commander ≥ 4.1.1
* Embed components (not yet in 7.9.6 but needed to build it):
+ @babel/plugin-syntax-export-namespace-from
+ @babel/plugin-syntax-object-rest-spread
+ @babel/plugin-syntax-async-generators @babel/plugin-syntax-dynamic-import
+ @babel/plugin-syntax-json-strings
+ @babel/plugin-syntax-nullish-coalescing-operator
+ @babel/plugin-syntax-optional-catch-binding
+ @babel/plugin-syntax-optional-chaining
* New upstream version 7.9.6+~cs66.71.39
* Clean build modules
* Embed build modules: browserify-fs, buffer-es6, jest-worker, process-es6,
rollup-plugin-node-builtins, rollup-plugin-node-globals,
rollup-plugin-terser, serialize-javascript
* Update lintian overrides
-- Xavier Guimard <yadd@debian.org> Tue, 19 May 2020 13:19:05 +0200
node-babel7 (7.4.5+~cs7.3.8-1) unstable; urgency=medium
* Add component: js-levenshtein
* New upstream version 7.4.5+~cs7.3.8
* Add node-babel7.install as workaround for pkg-js-tools not installing
the component
-- Pirate Praveen <praveen@debian.org> Sat, 16 May 2020 18:55:28 +0530
node-babel7 (7.4.5+~cs6.2.2-2) unstable; urgency=medium
* Team upload
* Add patch for node-core-js ≥ 3 (Closes: #960261)
-- Xavier Guimard <yadd@debian.org> Mon, 11 May 2020 10:30:57 +0200
node-babel7 (7.4.5+~cs6.2.2-1) unstable; urgency=medium
* Team upload
* Add pirates and node-modules-regexp components (Closes: #960018)
* New upstream version 7.4.5+~cs6.2.2
Really: 7.4.5+~1.0.1+~0.2.0+~4.0.1+~1.0.0
* Update copyright
-- Xavier Guimard <yadd@debian.org> Fri, 08 May 2020 14:34:14 +0200
node-babel7 (7.4.5-8) unstable; urgency=medium
* Team upload
* Add rebuild-itself autopkgtest test
* Rename "npm" build profile into pkg.node-babel.npm, following policy
-- Xavier Guimard <yadd@debian.org> Sun, 03 May 2020 09:09:42 +0200
node-babel7 (7.4.5-7) unstable; urgency=medium
* Update debian/tests/* to fix autopkgtest (remove modules no longer present)
* Disable autopkgtest-pkg-nodejs
-- Pirate Praveen <praveen@debian.org> Sat, 02 May 2020 23:04:05 +0530
node-babel7 (7.4.5-6) unstable; urgency=medium
* Source only upload (node-babel7 is available in archive)
-- Pirate Praveen <praveen@debian.org> Sat, 02 May 2020 12:21:28 +0530
node-babel7 (7.4.5-5) unstable; urgency=medium
* Reupload to unstable
-- Pirate Praveen <praveen@debian.org> Sat, 02 May 2020 10:29:10 +0530
node-babel7 (7.4.5-4) experimental; urgency=medium
[ Pirate Praveen ]
* Embed build only module: fastparse
* Update minimum version of node-supports-color to 5.3
* Tighten minimum version of node-core-js
* Allow node-gulp-babel from backports to satisfy dependency
* Add npm as conditional build dependency for use with npm build profile
* Tighten dependency on node-regenerator-transform (Closes: #958868)
* Update minimum version of node-browserslist
[ Xavier Guimard ]
* Use pkg-js-tools auto link during build
[ Pirate Praveen ]
* Skip use of prettier and don't build babel-standalone
* Use make build for more build steps
* Run make build with npm build profile as well
* Run make build-dist for complete build (Closes: #959110)
* Skip babel-polyfill generation (browserify is not packaged)
-- Pirate Praveen <praveen@debian.org> Fri, 01 May 2020 19:45:29 +0530
node-babel7 (7.4.5-3) experimental; urgency=medium
* Team upload
* Remove temporarily "Provides" field to avoid conflicts with packages
provided by node-babel=6
-- Xavier Guimard <yadd@debian.org> Thu, 23 Apr 2020 15:42:52 +0200
node-babel7 (7.4.5-2) experimental; urgency=medium
* Add a breaks to node-babel before alternative mechanism
* Require node-fs-readdir-recursive ≥ 1.1.0~
* Remove acorn-walk, provided by acorn
-- Xavier Guimard <yadd@debian.org> Mon, 20 Apr 2020 16:41:23 +0200
node-babel7 (7.4.5-1) experimental; urgency=medium
* Team upload
* Rename temporarily to node-babel7
* Update install
* Update alternatives
* Update copyright
* New upstream version 7.4.5 (Closes: #954028)
* Embed components: babeleslint-plugin-development, charcodes
* Embed some little component for build
* Refresh patches
* Install all components
* Update build & install
* Update lintian overrides
* Update autopkgtest
* Update dependencies
-- Xavier Guimard <yadd@debian.org> Tue, 17 Mar 2020 09:54:21 +0100
node-babel (6.26.0+repack-3) unstable; urgency=medium
* Team upload
* Install binaries using alternatives to prepare distinct babel-7 package
* Decalre compliance with policy 4.5.0
* Update lintian overrides
* Fix gulpfile for gulp ≥ 4
-- Xavier Guimard <yadd@debian.org> Sat, 14 Mar 2020 21:52:11 +0100
node-babel (6.26.0+repack-2) unstable; urgency=medium
* Team upload
* Back to unstable after successful tests
-- Xavier Guimard <yadd@debian.org> Sat, 11 Jan 2020 09:24:50 +0100
node-babel (6.26.0+repack-1) experimental; urgency=medium
* Team upload
* Require node-liftoff ≥ 3.1.0-4 and node-vinyl-fs ≥ 2.4.4-2 (fixes build)
* Embed core-js 2.6, remove dependencies to node-core-js and repack
(Closes: #947422)
* Bump debhelper compatibility level to 12
* Declare compliance with policy 4.4.1
* Add "Rules-Requires-Root: no"
* Update lintian overrides
* Install embedded core-js into node-babel-runtime and link it into
node-babel-register and node-babel-polyfill
* Use pkg-js-tools auto install
* Require pkg-js-tools ≥ 0.23
* Update debian/copyright
* Fix babel-runtime install
* Add patchs descriptions
* Update VCS fields to salsa
* Update lintian overrides
* Remove .npmignore files from install
* Add upstream/metadata
* Fix HOME to /tmp during autopkgtest
-- Xavier Guimard <yadd@debian.org> Sun, 05 Jan 2020 09:46:26 +0100
node-babel (6.26.0+dfsg-3) unstable; urgency=medium
* Add new binary node-babel-plugin-transform-proto-to-assign
-- Pirate Praveen <praveen@debian.org> Tue, 23 Jan 2018 19:49:32 +0530
node-babel (6.26.0+dfsg-2) unstable; urgency=medium
* Provide babeljs-external-helpers command
-- Pirate Praveen <praveen@debian.org> Sun, 07 Jan 2018 22:44:30 +0530
node-babel (6.26.0+dfsg-1) unstable; urgency=medium
* New upstream release
* Refresh patches
* Bump standards version
-- Pirate Praveen <praveen@debian.org> Fri, 05 Jan 2018 21:37:50 +0530
node-babel (6.25.0+dfsg1-3) unstable; urgency=medium
* Provide babeljs from node-babel-cli (as it provides /usr/bin/babeljs)
-- Pirate Praveen <praveen@debian.org> Fri, 15 Dec 2017 00:30:15 +0530
node-babel (6.25.0+dfsg1-2) unstable; urgency=medium
* Drop node-babel-register dependency in node-babel-core (Closes: #876016)
-- Pirate Praveen <praveen@debian.org> Wed, 25 Oct 2017 23:45:49 +0530
node-babel (6.25.0+dfsg1-1) unstable; urgency=medium
* Remove files without copyright owner, make ftp masters happy.
-- Pirate Praveen <praveen@debian.org> Tue, 10 Oct 2017 10:51:25 +0530
node-babel (6.25.0+dfsg-11) unstable; urgency=medium
* Add more binary packages
* Change /usr/bin/babel to /usr/bin/babeljs (Closes: #874420)
* Move to main section as babel can now build itself without using npm
* Add copyright to Google Inc for
packages/babel-preset-es2015/test/fixtures/traceur/*
-- Pirate Praveen <praveen@debian.org> Sun, 08 Oct 2017 21:06:36 +0530
node-babel (6.25.0+dfsg-10) unstable; urgency=medium
* Add node-regexpu-core as dependency for node-babel-preset-es2015
* Enable require test for babel-preset-es2015 and node-babel-preset-latest
-- Pirate Praveen <praveen@debian.org> Tue, 26 Sep 2017 10:35:49 +0530
node-babel (6.25.0+dfsg-9) unstable; urgency=medium
* Add new binary packages
-- Pirate Praveen <praveen@debian.org> Fri, 22 Sep 2017 22:17:02 +0530
node-babel (6.25.0+dfsg-8) unstable; urgency=medium
* Add missing dependency for node-babel-preset-stage-0
-- Pirate Praveen <praveen@debian.org> Thu, 21 Sep 2017 13:38:38 +0530
node-babel (6.25.0+dfsg-7) unstable; urgency=medium
* Update versions of packages provided by node-babel-preset-es2015
-- Pirate Praveen <praveen@debian.org> Wed, 20 Sep 2017 12:36:40 +0530
node-babel (6.25.0+dfsg-6) unstable; urgency=medium
* Add missing dependencies
-- Pirate Praveen <praveen@debian.org> Tue, 19 Sep 2017 23:08:20 +0530
node-babel (6.25.0+dfsg-5) unstable; urgency=medium
* Add new binary packages
-- Pirate Praveen <praveen@debian.org> Mon, 18 Sep 2017 13:46:10 +0530
node-babel (6.25.0+dfsg-4) unstable; urgency=medium
[ Pirate Praveen ]
* Add node-babel-plugin-transform-strict-mode as dependency for
node-babel-preset-es2015
* Use packaged modules from system when available
[ Daniel Ring ]
* Add more binary packages
-- Pirate Praveen <praveen@debian.org> Sun, 17 Sep 2017 10:43:52 +0530
node-babel (6.25.0+dfsg-3) unstable; urgency=medium
* Add more binary packages: node-babel-plugin-transform-strict-mode,
node-babel-helper-call-delegate, node-babel-helper-hoist-variables
-- Pirate Praveen <praveen@debian.org> Thu, 14 Sep 2017 13:55:13 +0530
node-babel (6.25.0+dfsg-2) unstable; urgency=medium
* Add more binary packages
* Increase autopkgtest coverage to all binary packages
-- Pirate Praveen <praveen@debian.org> Wed, 30 Aug 2017 11:17:49 +0530
node-babel (6.25.0+dfsg-1) unstable; urgency=low
* Initial release (Closes: #849291)
-- Pirate Praveen <praveen@debian.org> Tue, 27 Dec 2016 11:55:00 +0530
|