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 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236
|
rails (2:7.2.2.2+dfsg-2) unstable; urgency=medium
[ Santiago Vila ]
* Fixes FTBFS with nocheck (Closes: #1116891)
-- Antonio Terceiro <terceiro@debian.org> Sun, 19 Oct 2025 12:49:32 -0300
rails (2:7.2.2.2+dfsg-1) unstable; urgency=medium
* Team upload.
[ Soren Stoutner ]
* New upstream release (fixes CVE-2025-24293 and CVE-2025-55193).
* debian/control: Remove "Breaks: ruby-actionpack-action-caching (<< 1.2.2)"
(see https://lists.debian.org/debian-ruby/2025/08/msg00017.html).
* debian/copyright:
- Add Soren Stoutner to the debian/* stanza.
- Add Lucas Nussbaum to the debian/* stanza.
- Remove the unused GPL license.
[ Lucas Nussbaum ]
* Remove unnecessary debian/.gitattributes.
* debian/gbp.conf: Make compliant with DEP-14 defaults.
* debian/salsa-ci.yml: Change to use the team-specific include.
-- Soren Stoutner <soren@debian.org> Mon, 15 Sep 2025 15:28:33 -0700
rails (2:7.2.2.1+dfsg-7) unstable; urgency=medium
* Team upload
* Drop unused (build) dependency on ruby-terser
-- Pirate Praveen <praveen@debian.org> Tue, 22 Apr 2025 12:35:07 +0530
rails (2:7.2.2.1+dfsg-6) unstable; urgency=medium
* Team upload
* Drop unused ruby-sprokets-rails (build) dependency
- Switch to ruby-rails-propshaft for newapp autopkgtest
-- Pirate Praveen <praveen@debian.org> Tue, 22 Apr 2025 01:54:54 +0530
rails (2:7.2.2.1+dfsg-5) unstable; urgency=medium
* Team upload
* Drop (build) dependency on ruby-sass-rails (replaced by dartsass-rails)
-- Pirate Praveen <praveen@debian.org> Sun, 20 Apr 2025 15:41:24 +0530
rails (2:7.2.2.1+dfsg-4) unstable; urgency=medium
* Team upload
* Drop unused (build) dependency on ruby-chromedriver-helper
(Closes: #1103428)
-- Pirate Praveen <praveen@debian.org> Sat, 19 Apr 2025 22:47:14 +0530
rails (2:7.2.2.1+dfsg-3) unstable; urgency=medium
* Team upload
* Drop unused (build) dependency on ruby-image-processing
-- Pirate Praveen <praveen@debian.org> Sat, 19 Apr 2025 18:30:48 +0530
rails (2:7.2.2.1+dfsg-2) unstable; urgency=medium
* Team upload
* Drop (build) dependency on ruby-webpacker
(replaced by ruby-{js,css}bundling-rails)
* Bump Standards-Version to 4.7.2 (no changes needed)
-- Pirate Praveen <praveen@debian.org> Fri, 07 Mar 2025 21:16:10 +0530
rails (2:7.2.2.1+dfsg-1) unstable; urgency=medium
[ Utkarsh Gupta ]
* Reupload to unstable.
- Fixes CVE-2023-38037, CVE-2023-28362, CVE-2024-26144, CVE-2024-28103,
CVE-2024-47889, CVE-2024-47888, CVE-2024-47887, CVE-2024-41128.
- Closes: #1051057, #1051058, #1065119, #1072705, #1085376.
* No-change rebuild for unstable.
[ Antonio Terceiro ]
* autopkgtest: newapp: adapt to new rails version.
-- Utkarsh Gupta <utkarsh@debian.org> Wed, 05 Mar 2025 14:28:20 +0530
rails (2:7.2.2.1+dfsg-1~exp6) experimental; urgency=medium
* Team upload
* Add ruby-useragent (>= 0.16~) as ruby-actionpack dependency
-- Pirate Praveen <praveen@debian.org> Tue, 11 Feb 2025 14:47:41 +0530
rails (2:7.2.2.1+dfsg-1~exp5) experimental; urgency=medium
* Add ruby-rackup to railties deps
-- Sruthi Chandran <srud@debian.org> Fri, 31 Jan 2025 17:01:52 +0100
rails (2:7.2.2.1+dfsg-1~exp4) experimental; urgency=medium
* Add ruby-zeitwork to railties deps
-- Sruthi Chandran <srud@debian.org> Thu, 30 Jan 2025 17:51:47 +0100
rails (2:7.2.2.1+dfsg-1~exp3) experimental; urgency=medium
* Add ruby-rack-session to ruby-actionpack deps
-- Sruthi Chandran <srud@debian.org> Wed, 29 Jan 2025 22:20:42 +0530
rails (2:7.2.2.1+dfsg-1~exp2) experimental; urgency=medium
* Fix ruby-rack version
-- Sruthi Chandran <srud@debian.org> Wed, 29 Jan 2025 14:58:35 +0530
rails (2:7.2.2.1+dfsg-1~exp1) experimental; urgency=medium
* New upstream version 7.2.2.1+dfsg
* Build-depend on ruby-rack-session >= 1.0.1
* Build-depend on ruby-sprockets >= 4 for rack3 support
* Build-depend on ruby-useragent
* Build-depend on ruby-rackup >= 1
* allow ruby-rack v3 as build-dep
* Drop build-dependency on ruby-blade and ruby-coffeescript
* (build)-depend on ruby-rails-html-sanitizer >= 1.6
* Relax dependency on timeout gem
* Relax version dependency on irb
* Restriction on ruby-nokogiri minimal version
* Don't install RUNNING_UJS_TESTS.rdoc RDOC_MAIN.rdoc as a doc, removed upstream
-- Cédric Boutillier <boutil@debian.org> Tue, 28 Jan 2025 12:12:22 +0100
rails (2:6.1.7.3+dfsg-13) unstable; urgency=medium
* Team upload.
* Revert the relaxing of ruby-rack's dependency in ruby-actionpack.
This did not work out as planned since rack-session was added as
a dependency in actionpack/actionpack.gemspec in v2:6.1.7.3+dfsg-9
-- Lucas Nussbaum <lucas@debian.org> Mon, 10 Feb 2025 17:56:50 +0100
rails (2:6.1.7.3+dfsg-12) unstable; urgency=medium
* Team upload
* Add Breaks: schleuder (<< 5.0.0-3~) (to help migration to testing)
-- Pirate Praveen <praveen@debian.org> Mon, 10 Feb 2025 14:25:38 +0530
rails (2:6.1.7.3+dfsg-11) unstable; urgency=medium
* Team upload
* Change ruby-actionpack's dependency on ruby-rack-session to
"| ruby-rack (<< 3)", as Rack::Session was part of Rack 2. This
should allow Rack 3 to transition to testing independently of Rails.
-- Lucas Nussbaum <lucas@debian.org> Mon, 10 Feb 2025 08:52:20 +0100
rails (2:6.1.7.3+dfsg-10) unstable; urgency=medium
* Team upload
* Disable 'rake test' in 'newapp' autopkgtest
-- Lucas Nussbaum <lucas@debian.org> Sun, 09 Feb 2025 09:03:15 +0100
rails (2:6.1.7.3+dfsg-9) unstable; urgency=medium
* Patch actionpack/actionpack.gemspec to depend on rack-session
-- Sruthi Chandran <srud@debian.org> Fri, 31 Jan 2025 12:28:22 +0100
rails (2:6.1.7.3+dfsg-8) unstable; urgency=medium
* Add ruby-rack-rack-session as a Depends for ruby-actionpack.
-- Utkarsh Gupta <utkarsh@debian.org> Thu, 30 Jan 2025 14:29:34 +0100
rails (2:6.1.7.3+dfsg-7) unstable; urgency=medium
* Team upload
* Re-upload to unstable
-- Cédric Boutillier <boutil@debian.org> Mon, 27 Jan 2025 15:37:48 +0100
rails (2:6.1.7.3+dfsg-7~exp1) experimental; urgency=medium
* relax-dependencies.patch: relax rack for actionpack
* relax rack dependency for ruby-actionpack
-- Cédric Boutillier <boutil@debian.org> Sun, 26 Jan 2025 22:58:38 +0100
rails (2:6.1.7.3+dfsg-6) unstable; urgency=medium
* Team upload
* Restore rack v2 constraint for ruby-actionpack
-- Cédric Boutillier <boutil@debian.org> Wed, 15 Jan 2025 08:41:50 +0100
rails (2:6.1.7.3+dfsg-5) unstable; urgency=medium
* Team upload
* d/control: relax version dependency on ruby-rack
* d/rules: remove noop code where a js file is regenerated before being
deleted
* Remove build-dependency on ruby-blade
-- Cédric Boutillier <boutil@debian.org> Wed, 15 Jan 2025 08:16:26 +0100
rails (2:6.1.7.3+dfsg-4) unstable; urgency=medium
* Team upload
* Relax version dependency on ruby-redis
* Remove X?-Ruby-Versions fields from d/control
-- Cédric Boutillier <boutil@debian.org> Thu, 05 Sep 2024 14:23:41 +0200
rails (2:6.1.7.3+dfsg-3) unstable; urgency=medium
* Team upload.
* Use puma 6.x (to match the version in the archive)
-- Pirate Praveen <praveen@debian.org> Sun, 04 Feb 2024 01:13:40 +0530
rails (2:6.1.7.3+dfsg-2) unstable; urgency=medium
* debian/control:
- Declare that ruby-activerecord breaks and replaces ruby-arel: it was
merged five years ago, is therefore obsolete and to be removed.
(Closes: #1038935)
-- Georg Faerber <georg@debian.org> Sun, 25 Jun 2023 11:53:59 +0000
rails (2:6.1.7.3+dfsg-1) unstable; urgency=medium
* Team upload.
* New upstream version 6.1.7.3+dfsg. Closes: #1030050.
+ This is a security-only release from a rails stable branch.
Upstream changelogs:
https://github.com/rails/rails/releases/tag/v6.1.7.1
https://github.com/rails/rails/releases/tag/v6.1.7.2
https://github.com/rails/rails/releases/tag/v6.1.7.3
Fixed CVEs: CVE-2023-22796 CVE-2023-22794 CVE-2022-44566 CVE-2023-22795
CVE-2023-22792 CVE-2023-28120 CVE-2023-23913
+ All reverse dependencies and build-dependencies have been
tested using the ruby team's tooling. No regressions were found.
-- Lucas Nussbaum <lucas@debian.org> Sat, 25 Mar 2023 23:39:22 +0100
rails (2:6.1.7+dfsg-3) unstable; urgency=medium
* Team upload
[ Nilesh Patra ]
* Add patche to fix FTBFS with rollup 3
[ Antonio Terceiro ]
* Add patch for compatibility with ruby3.1
-- Antonio Terceiro <terceiro@debian.org> Fri, 09 Dec 2022 17:09:01 -0300
rails (2:6.1.7+dfsg-2) unstable; urgency=medium
* Team Upload.
* d/p/0002-disable-uglify-in-activestorage-rollup-config-js.patch:
+ Use modulePaths instead of moduleDirectories (Closes: #1022332)
-- Nilesh Patra <nilesh@debian.org> Sat, 29 Oct 2022 21:37:16 +0530
rails (2:6.1.7+dfsg-1) unstable; urgency=medium
* New upstream version 6.1.7+dfsg.
* Drop patches that have been included in this release.
* Refresh d/patches.
-- Utkarsh Gupta <utkarsh@debian.org> Mon, 12 Sep 2022 22:40:02 +0530
rails (2:6.1.6.1+dfsg-4) unstable; urgency=high
* Add patch to allow Date, Time, ActiveSupport::HashWithIndifferentAccess
in YAML columns.
-- Utkarsh Gupta <utkarsh@debian.org> Wed, 07 Sep 2022 04:21:07 +0530
rails (2:6.1.6.1+dfsg-3) unstable; urgency=high
* Add patch to remove active_record.yaml initializers.
-- Utkarsh Gupta <utkarsh@debian.org> Tue, 06 Sep 2022 04:54:43 +0530
rails (2:6.1.6.1+dfsg-2) unstable; urgency=high
[ Pirate Praveen ]
* Add <!nocheck> for ruby-selenium-webdriver
[ Utkarsh Gupta ]
* Add patch to allow Symbols in YAML columns. (Closes: #1018934)
-- Utkarsh Gupta <utkarsh@debian.org> Tue, 06 Sep 2022 04:34:47 +0530
rails (2:6.1.6.1+dfsg-1) unstable; urgency=medium
[ Pirate Praveen ]
* Remove <!nocheck> build profile from runtime dependencies.
[ Utkarsh Gupta ]
* New upstream version 6.1.6.1+dfsg. (Fixes: CVE-2022-22577,
CVE-2022-27777, CVE-2022-32224) (Closes: #1011941, #1016982, #1016140)
* d/control: Update minimum version of ruby-selenium-webdriver to 4.0.0
for autopkgtest. :)
[ Gabriela Pivetta ]
* d/p/activerecord-add-missing-require-statements.patch: Drop
patch that has been merged upstream.
* d/patches: Refresh patches.
-- Gabriela Pivetta <gpivetta99@gmail.com> Thu, 18 Aug 2022 15:46:46 -0300
rails (2:6.1.4.7+dfsg-2) unstable; urgency=medium
* Team upload.
* Skip flaky tests in activesupport (Closes: #1006981)
-- Pirate Praveen <praveen@debian.org> Tue, 21 Jun 2022 15:40:07 +0530
rails (2:6.1.4.7+dfsg-1) unstable; urgency=medium
* Team upload.
* Update filenamemangle in watch file regex
* New upstream version 6.1.4.7+dfsg (Fixes: CVE-2022-21831)
* Convert rails-ujs.coffee to js using coffee command line and pass
javascript code to blade tool instead of directly passing coffeescript.
This fixes build failure caused by coffeescript 2 outputting ES6
(Closes: #1013218)
-- Pirate Praveen <praveen@debian.org> Mon, 20 Jun 2022 23:48:08 +0530
rails (2:6.1.4.6+dfsg-3) unstable; urgency=medium
* Team upload.
* Switch to ruby-terser from ruby-uglifier (better maintained fork)
-- Pirate Praveen <praveen@debian.org> Wed, 01 Jun 2022 18:32:47 +0530
rails (2:6.1.4.6+dfsg-2) unstable; urgency=medium
* Skip flaky tests (Closes: #1006981)
-- Antonio Terceiro <terceiro@debian.org> Sat, 30 Apr 2022 09:24:12 -0300
rails (2:6.1.4.6+dfsg-1) unstable; urgency=medium
* Team upload.
* New upstream version 6.1.4.6+dfsg
-- Pirate Praveen <praveen@debian.org> Wed, 02 Mar 2022 08:26:52 +0530
rails (2:6.1.4.1+dfsg-8) unstable; urgency=medium
* Team upload.
* d/control (Breaks): Add more packages for the transition.
(Depends): Remove interpreter and use ruby:any.
(Build-Depends): Raise ruby-globalid version due to rails/globalid#123.
* d/patches/relax-dependencies.patch: Adjust.
- Relax dependencies in created app Gemfile as well.
* d/patches/use-system-webpacker.patch: Adjust.
- Set to current webpacker version.
* d/source/lintian-overrides: Fix overrides.
-- Daniel Leidert <dleidert@debian.org> Thu, 02 Dec 2021 07:30:48 +0100
rails (2:6.1.4.1+dfsg-7) unstable; urgency=medium
* Team upload.
* d/control (Breaks): Add ruby-actionpack-action-caching,
ruby-actionpack-page-caching, ruby-activerecord-nulldb-adapter,
ruby-data-migrate.
* d/patches/temporarily-disable-encoded-key-cache-behavior-test.patch: Add.
- Disable flaky test. Upstream discovered several race conditions.
Don't let them stop the transition.
* d/patches/series: Enable new patch.
-- Daniel Leidert <dleidert@debian.org> Mon, 29 Nov 2021 03:44:54 +0100
rails (2:6.1.4.1+dfsg-6) unstable; urgency=medium
* Team upload.
* d/patches/disable-rack-mini-profiler-gem.patch: Add patch.
- Comment out rack-mini-profiler gem until it has been packaged.
* d/patches/series: Add new patch.
-- Daniel Leidert <dleidert@debian.org> Sun, 28 Nov 2021 23:14:36 +0100
rails (2:6.1.4.1+dfsg-5) unstable; urgency=medium
* Team upload
[ Cédric Boutillier ]
* Source-only reupload
* The 6.1 version:
- has tests working with ruby3.0 (Closes: #998507)
- uses puma >= 5 (Closes: #997883)
- fixes tests for ruby-rspec-rails (Closes: #996377)
* relax-dependencies.patch: relax more gem dependencies
+ on webpacker
+ on selenium-webdriver
+ on mysql2
+ on redis-namespace
* Build-depend on ruby-webpacker
* Declare breaking older packages:
+ ruby-activesupport breaks ruby-delayed-job < 4.1.8
+ ruby-activerecord breaks delayed-job-active-record < 4.1.5
* Depend on ruby-web-console >= 4.1 and break earlier versions
[ Antonio Terceiro ]
* Add patch: activerecord: add missing require statements
* debian/rules: removing trailing whitespace
* debian/rules: look for nocheck in DEB_BUILD_OPTIONS
* Add missing build dependency on ruby-webrick
-- Antonio Terceiro <terceiro@debian.org> Mon, 22 Nov 2021 19:18:38 -0300
rails (2:6.1.4.1+dfsg-4) unstable; urgency=medium
* Team upload
* Upload with nocheck profile and with binaries to break circular dependency
with version incompatibilities rails/ruby-sprockets-rails/ruby-tzinfo
-- Cédric Boutillier <boutil@debian.org> Fri, 19 Nov 2021 18:13:00 +0100
rails (2:6.1.4.1+dfsg-3) unstable; urgency=medium
* No-change rebuild for unstable.
- Let's break the world. \o/
-- Utkarsh Gupta <utkarsh@debian.org> Mon, 15 Nov 2021 22:41:51 +0530
rails (2:6.1.4.1+dfsg-2) experimental; urgency=medium
* Team Upload
* Update minimum version of dependencies, for partial update from buster,
thanks to lepalom. ruby-zeitwerk (>= 2.3~), ruby-i18n (>= 1.6~),
ruby-thor (>= 1.0~)
-- Pirate Praveen <praveen@debian.org> Mon, 20 Sep 2021 20:27:32 +0530
rails (2:6.1.4.1+dfsg-1) experimental; urgency=medium
* Team Upload
* New upstream version 6.1.4.1+dfsg
* Bump Standards-Version to 4.6.0 (no changes needed)
-- Pirate Praveen <praveen@debian.org> Wed, 15 Sep 2021 21:00:57 +0530
rails (2:6.1.4+dfsg-4) experimental; urgency=medium
[ Pirate Praveen ]
* Fix silent build failure and adapt rollup.config.js for recent changes
(cherry pick from master-6.0 branch)
[ Utkarsh Gupta ]
* Drop Jongmin Kim from uploaders. (cherry pick from master-6.0 branch)
[ Pirate Praveen ]
* Fix syntax error introduced in patch (fixes ftbfs)
-- Pirate Praveen <praveen@debian.org> Thu, 09 Sep 2021 23:28:50 +0530
rails (2:6.1.4+dfsg-3) experimental; urgency=medium
* Team Upload
* Enable gemspec dependency check during build
* Add ruby-mini-mime dependency
-- Pirate Praveen <praveen@debian.org> Tue, 07 Sep 2021 22:46:37 +0530
rails (2:6.1.4+dfsg-2) experimental; urgency=medium
* Binary included upload to fix circular dependency
-- Sruthi Chandran <srud@debian.org> Mon, 06 Sep 2021 23:06:39 +0530
rails (2:6.1.4+dfsg-1) experimental; urgency=medium
[ Utkarsh Gupta ]
* New upstream version 6.1.0+dfsg
* Refresh the first patch
[ Sruthi Chandran ]
* New upstream version 6.1.4+dfsg
* Refresh patches
* Exclude minified file (clipboard.js)
-- Sruthi Chandran <srud@debian.org> Tue, 27 Jul 2021 00:57:58 +0530
rails (2:6.0.3.7+dfsg-2) unstable; urgency=medium
* Partially revert "Update minimum version of ruby-marcel to 1.0~".
* Add patch relax marcel for bullseye.
-- Utkarsh Gupta <utkarsh@debian.org> Fri, 09 Jul 2021 00:33:18 +0530
rails (2:6.0.3.7+dfsg-1) unstable; urgency=high
* Upload to unstable directly.
* New upstream version 6.0.3.7+dfsg. (Closes: #988214)
- Prevent slow regex when parsing host authorization header.
(Fixed: CVE-2021-22904)
- Prevent catastrophic backtracking during mime parsing.
(Fixes: CVE-2021-22902)
- Prevent string polymorphic route arguments.
(Fixes: CVE-2021-22885)
-- Utkarsh Gupta <utkarsh@debian.org> Sat, 15 May 2021 16:05:45 +0530
rails (2:6.0.3.6+dfsg-2) experimental; urgency=medium
* Install @rails/actioncable node module and Provide node-rails-actioncable
-- Pirate Praveen <praveen@debian.org> Sun, 02 May 2021 23:47:43 +0530
rails (2:6.0.3.6+dfsg-1) experimental; urgency=medium
* Team Upload
* New upstream version 6.0.3.6+dfsg (upgrade Active Storage’s Marcel
dependency to version 1.0.0.)
Before 1.0.0, Marcel—which is distributed under the terms of the MIT
License, like Rails—indirectly depended on MIME type data released under
the GNU General Public License making the effective license of rails
applications GPL. Marcel 1.0.0 instead directly packages MIME type data
adapted from Apache Tika, released under the permissive and compatible
Apache License 2.0.
* Update minimum version of ruby-marcel to 1.0~
-- Pirate Praveen <praveen@debian.org> Thu, 29 Apr 2021 15:52:41 +0530
rails (2:6.0.3.5+dfsg-1) unstable; urgency=high
* New upstream version 6.0.3.5+dfsg.
- Fix possible DoS vector in PostgreSQL money type.
(Fixes: CVE-2021-22880)
- Prevent open redirect when allowed host starts with a dot.
(Fixes: CVE-2021-22881)
* Fix d/gbp.conf for master-6.0 branch.
* Drop Jongmin Kim from uploaders.
- Thanks, Jongmin, for all the work so far!
-- Utkarsh Gupta <utkarsh@debian.org> Sun, 14 Feb 2021 18:48:21 +0530
rails (2:6.0.3.4+dfsg-3) unstable; urgency=medium
[ Pirate Praveen ]
* Fix silent build failure and adapt rollup.config.js for
recent changes. (Closes: #979133)
-- Utkarsh Gupta <utkarsh@debian.org> Wed, 03 Feb 2021 22:12:15 +0530
rails (2:6.0.3.4+dfsg-2) unstable; urgency=medium
[ Pirate Praveen ]
* Allow build with "nocheck" build profile to skip selenium
dependency. (Closes: #974065)
- Thanks, Sven Mueller, for the patch.
* Drop build dependency on qunit-selenium. (Closes: #976291)
- We do not have tests enabled that need qunit-selenium.
[ Utkarsh Gupta ]
* Fix d/control spacing issue.
* Remove unnecessary version guards.
+ cme fix dpkg to the resuce.
* Bump debhelper-compat to 13.
* Re-format d/gbp.conf.
- To help properly branch out stuff.
-- Utkarsh Gupta <utkarsh@debian.org> Sat, 12 Dec 2020 02:42:08 +0530
rails (2:6.0.3.4+dfsg-1) unstable; urgency=medium
* New upstream version 6.0.3.4+dfsg
- Fix a possible XSS vulnerability in Action Pack in
Development Mode. (Fixes: CVE-2020-8264) (Closes: #971988)
-- Utkarsh Gupta <utkarsh@debian.org> Mon, 12 Oct 2020 00:28:24 +0530
rails (2:6.0.3.3+dfsg-1) unstable; urgency=medium
[ Cédric Boutillier ]
* [ci skip] Update team name
* [ci skip] Add .gitattributes to keep unwanted files out of the
source package
[ Utkarsh Gupta ]
* New upstream version 6.0.3.3+dfsg
- Ensure values directly from `options[:default]` are not marked
as `html_safe`. (Fixes: CVE-2020-15169) (Closes: #970040)
-- Utkarsh Gupta <utkarsh@debian.org> Fri, 11 Sep 2020 09:32:28 +0530
rails (2:6.0.3.2+dfsg-11) unstable; urgency=medium
* Team Upload
* Move yarnpkg to recommends of rails meta package
(To help testing migration)
-- Pirate Praveen <praveen@debian.org> Fri, 28 Aug 2020 14:49:09 +0530
rails (2:6.0.3.2+dfsg-10) unstable; urgency=medium
* Team Upload
* Skip creating javascript and webpack installation in newapp autopkgtest
(This fixes autopkgtest regression in arm64)
-- Pirate Praveen <praveen@debian.org> Thu, 27 Aug 2020 23:24:41 +0530
rails (2:6.0.3.2+dfsg-9) unstable; urgency=medium
* Team Upload
* Remove webdrivers from default Gemfile for new rails applications
(Closes: #967007)
-- Pirate Praveen <praveen@debian.org> Tue, 11 Aug 2020 13:04:28 +0530
rails (2:6.0.3.2+dfsg-8) unstable; urgency=medium
* Team Upload
* Add ruby-webpacker as dependency to rails meta package
-- Pirate Praveen <praveen@debian.org> Fri, 07 Aug 2020 23:24:21 +0530
rails (2:6.0.3.2+dfsg-7) unstable; urgency=medium
* Remove dependencies no longer required for rails metapackage
* Remove Breaks on ruby-carrierwave << 2
-- Pirate Praveen <praveen@debian.org> Tue, 04 Aug 2020 17:49:02 +0530
rails (2:6.0.3.2+dfsg-6) unstable; urgency=medium
* Add more dependencies for rails metapackage
-- Pirate Praveen <praveen@debian.org> Tue, 04 Aug 2020 01:46:50 +0530
rails (2:6.0.3.2+dfsg-5) unstable; urgency=medium
* Remove more generated files in clean
* Fix bundler patch and add bundler as dependency (Closes: #966838)
* Bump minimum version of puma to 4.1
-- Pirate Praveen <praveen@debian.org> Mon, 03 Aug 2020 14:57:03 +0530
rails (2:6.0.3.2+dfsg-4) unstable; urgency=medium
* Team Upload
* Fail build when tests fails (Closes: #919478)
* Start redis server for activesupport tests (fixes test failures)
* Change assets:compile to assets:codegen in actioncable build
-- Pirate Praveen <praveen@debian.org> Mon, 03 Aug 2020 03:00:27 +0530
rails (2:6.0.3.2+dfsg-3) unstable; urgency=medium
* Team Upload
* Reupload to unstable
* Add Breaks for packages that need a new version for rails 6 support
-- Pirate Praveen <praveen@debian.org> Sun, 02 Aug 2020 22:54:59 +0530
rails (2:6.0.3.2+dfsg-2) experimental; urgency=medium
* Team Upload
* Drop myself from uploaders
* Update minimum version of ruby-sass-rails to 6.0~
-- Pirate Praveen <praveen@debian.org> Wed, 29 Jul 2020 18:15:23 +0530
rails (2:6.0.3.2+dfsg-1) experimental; urgency=medium
* New upstream version 6.0.3.2+dfsg
- Fixes CVE-2020-8185: Untrusted users able to run pending
migrations in production (Closes: 964081)
* Refresh d/patches
-- Utkarsh Gupta <utkarsh@debian.org> Wed, 01 Jul 2020 17:12:45 +0530
rails (2:6.0.3.1+dfsg-1) experimental; urgency=medium
* New upstream version 6.0.3.1+dfsg
* Refresh patches
-- Pirate Praveen <praveen@debian.org> Mon, 25 May 2020 16:04:56 +0530
rails (2:6.0.2.1+dfsg-4) experimental; urgency=medium
* Tighten dependency on ruby-rails-html-sanitizer (for backports)
* Switch to node-babel7 for activestorage javascript bundle generation
-- Pirate Praveen <praveen@debian.org> Sun, 03 May 2020 18:25:37 +0530
rails (2:6.0.2.1+dfsg-3) experimental; urgency=medium
* Add patch to fix ActionController::TestSession#id to return
Rack::Session::SessionId instance.
-- Utkarsh Gupta <utkarsh@debian.org> Thu, 26 Mar 2020 13:34:17 +0530
rails (2:5.2.4.1+dfsg-1) unstable; urgency=medium
[ Lucas Kanashiro ]
* New upstream version 5.2.4.1+dfsg
[ Utkarsh Gupta ]
* Refresh patches
* Update patch to remove the function call
* Tighten dependency on ruby-rack
-- Utkarsh Gupta <utkarsh@debian.org> Sat, 07 Mar 2020 17:35:09 +0530
rails (2:5.2.3+dfsg-3) unstable; urgency=medium
* Tighten dependency on bundler
* Add patch to fix autopkgtest
* Use @d.o address
-- Utkarsh Gupta <utkarsh@debian.org> Fri, 14 Feb 2020 05:31:36 +0530
rails (2:5.2.3+dfsg-2) unstable; urgency=medium
* Relax dependency on bundler
* Bump Standards-Version to 4.5.0 (no changes needed)
-- Sruthi Chandran <srud@debian.org> Fri, 07 Feb 2020 11:55:23 +0100
rails (2:6.0.2.1+dfsg-2) experimental; urgency=medium
* Tighten dependency on ruby-rack
-- Sruthi Chandran <srud@debian.org> Wed, 05 Feb 2020 15:02:04 +0100
rails (2:6.0.2.1+dfsg-1) experimental; urgency=medium
[ Debian Janitor ]
* Use secure copyright file specification URI.
* Update standards version to 4.4.1, no changes needed.
* Remove obsolete fields Name, Contact from debian/upstream/metadata.
[ Sruthi Chandran ]
* New upstream version 6.0.2.1+dfsg
* Refresh patches
* Bump Standards-Version to 4.5.0 (no changes needed)
-- Sruthi Chandran <srud@debian.org> Tue, 04 Feb 2020 13:49:14 +0100
rails (2:6.0.0+dfsg-1) experimental; urgency=medium
* New upstream version 6.0.0+dfsg
* d/control:
+ Add myself as Uploaders
+ Refresh the dependencies for 6.0.0
+ Add new packages: ruby-actionmailbox and ruby-actiontext
+ Fix lintian P: insecure-copyright-format-uri
* d/copyright:
+ Refresh the copyrights for 6.0.0
+ Fix lintian P: insecure-copyright-format-uri
* d/patches: Refresh the patches for 6.0.0
* d/ruby-tests.rb:
+ Refresh the tests for 6.0.0
+ Disable the lib/ renaming
+ Disable the failing tests
* d/*.docs: Refresh the docs for 6.0.0
-- Jongmin Kim <jmkim@pukyong.ac.kr> Sun, 25 Aug 2019 14:50:21 +0900
rails (2:5.2.3+dfsg-1) unstable; urgency=medium
* New upstream version 5.2.3+dfsg
* Add salsa-ci.yml
* Bump Standards-Version to 4.4.0
* Bump debhelper-compat to 12
* Add myself as an uploader
-- Utkarsh Gupta <guptautkarsh2102@gmail.com> Tue, 13 Aug 2019 03:18:06 +0530
rails (2:5.2.2.1+dfsg-1) unstable; urgency=medium
* Team upload
* New upstream version 5.2.2.1+dfsg (Closes: #924520, #924521)
(Fixes: CVE-2019-5418 CVE-2019-5419, CVE-2019-5420)
* Drop unused override
* Remove duplicate Depends entry for rake
* Add d/upstream/metadata
-- Utkarsh Gupta <guptautkarsh2102@gmail.com> Sun, 17 Mar 2019 17:44:07 +0530
rails (2:5.2.2+dfsg-6) unstable; urgency=medium
[ Antonio Terceiro ]
* debian/tests/control: remove explicit call to gem2deb-test-runner, as it
will be added automatically by autodep8.
[ Pirate Praveen ]
* Move all Recommends from ruby-rails to rails as Depends (Closes: #923507)
* Drop obsolete Breaks + Replaces rails3
* Drop needs-recommends restriction in newapp autopkgtest
* Add debian/node_modules path in activestorage/rollup.config.js for spark-md5
-- Pirate Praveen <praveen@debian.org> Fri, 01 Mar 2019 19:50:07 +0530
rails (2:5.2.2+dfsg-5) unstable; urgency=medium
* Recommend ruby-chromedriver-helper in ruby-rails
-- Pirate Praveen <praveen@debian.org> Fri, 08 Feb 2019 16:22:07 +0530
rails (2:5.2.2+dfsg-4) unstable; urgency=medium
* Allow ruby-sprockets-rails >= 3
* Bump Standards-Version to 4.3.0 (no changes needed)
-- Pirate Praveen <praveen@debian.org> Thu, 07 Feb 2019 11:12:48 +0530
rails (2:5.2.2+dfsg-3) unstable; urgency=medium
* Build action_cable.js using blade build system for ruby-actioncable
-- Pirate Praveen <praveen@debian.org> Wed, 06 Feb 2019 18:01:34 +0530
rails (2:5.2.2+dfsg-2) unstable; urgency=medium
* Use --gem-install option to dh_ruby as many components now has javascript
files targeted for asset pipeline.
* Fix typo in rules to correctly override dh_auto_build (Closes: #897641)
* Switch to rollup for building activestorage.js, like upstream
* Build rails-ujs as part of ruby-actionview with blade build system
-- Pirate Praveen <praveen@debian.org> Wed, 30 Jan 2019 14:47:39 +0530
rails (2:5.2.2+dfsg-1) unstable; urgency=medium
* New upstream version 5.2.2 (Closes: #914847, #914848)
(Fixes: CVE-2018-16476, CVE-2018-16477)
* Delete 0002-edit-activestorage-webpack-config-js.patch
* Add 0002-disable-uglify-in-activestorage-rollup-config-js.patch
-- Sruthi Chandran <srud@disroot.org> Mon, 07 Jan 2019 00:23:02 +0530
rails (2:5.2.0+dfsg-2) unstable; urgency=medium
* Re-upload to unstable
-- Sruthi Chandran <srud@disroot.org> Thu, 03 Jan 2019 13:14:54 +0530
rails (2:5.2.0+dfsg-1) experimental; urgency=medium
* New upstream release
* Add myself to uploaders
* Embed spark-md5
* Remove activestorage.js and syntaxhighlighter.js for dfsg
* Use webpack to build activestorage.js
* Bump Standards-Version to 4.2.0 (no changes needed)
* Update lintian overrides
* Use salsa.debian.org in Vcs-* fields
* Add nocheck build profile
* Remove shCore.js from missing-sources
-- Sruthi Chandran <srud@disroot.org> Fri, 03 Aug 2018 20:37:48 +0530
rails (2:4.2.10-1) unstable; urgency=medium
* New upstream version 4.2.10
* Bump debhelper compat to 11 and standards version to 4.1.3
-- Pirate Praveen <praveen@debian.org> Sun, 18 Mar 2018 17:20:16 +0530
rails (2:4.2.9-4) unstable; urgency=medium
* Team upload.
* Patch gem specs to really relax rack-test dependency.
-- Marc Dequènes (Duck) <Duck@DuckCorp.org> Thu, 07 Sep 2017 19:46:41 +0900
rails (2:4.2.9-3) unstable; urgency=medium
* Relax dependency on ruby-rack-test
* Add myself to uploaders
-- Pirate Praveen <praveen@debian.org> Wed, 06 Sep 2017 12:14:19 +0530
rails (2:4.2.9-2) unstable; urgency=medium
* Team upload
* Reupload to unstable
-- Pirate Praveen <praveen@debian.org> Wed, 23 Aug 2017 18:39:08 +0530
rails (2:4.2.9-1) experimental; urgency=medium
* Team upload
* New upstream release
-- Pirate Praveen <praveen@debian.org> Sun, 30 Jul 2017 22:14:24 +0530
rails (2:4.2.7.1-1) unstable; urgency=medium
* New upstream release; includes fixes for the following issues:
- CVE-2016-6317: unsafe query generation in Active Record (Closes: #834154)
- CVE-2016-6316: Possible XSS Vulnerability in Action View (Closes: #834155)
* debian/watch: restrict to the 4.x series for now
-- Antonio Terceiro <terceiro@debian.org> Mon, 22 Aug 2016 14:33:48 -0300
rails (2:4.2.6-2) unstable; urgency=medium
* Team upload
* ruby-rails: Add ruby-coffee-rails to recommends (Closes: #818470)
* Relax ruby-json (drop << 2.0 requirement)
-- Pirate Praveen <praveen@debian.org> Fri, 22 Jul 2016 23:37:44 +0530
rails (2:4.2.6-1) unstable; urgency=medium
[ Antonio Terceiro ]
* New upstream release
* debian/clean: list files that are created when the tests run
* Drop 0003-Make-AR-SpawnMethods-merge-to-check-an-arg-is-a-Proc.patch,
applied upstream
[ Praveen Arimbrathodiyil ]
* Set minimum version of ruby-sprockets-rails (for sprockets version
incompatibility with ruby-sass-rails)
-- Antonio Terceiro <terceiro@debian.org> Sat, 09 Apr 2016 19:39:46 -0300
rails (2:4.2.5.2-2) unstable; urgency=medium
[ Cédric Boutillier ]
* Remove version in the gem2deb build-dependency
* Use https:// in Vcs-* fields
* Bump Standards-Version to 3.9.7 (no changes needed)
* Run wrap-and-sort on packaging files
[ Antonio Terceiro ]
* 0002-load_paths.rb-don-t-load-bundler.patch: don't load bundler when
running tests
* Run tests during build
- add all runtime dependencies as build dependencies as well
* Run unit tests also under autopkgtest
* Add 0003-Make-AR-SpawnMethods-merge-to-check-an-arg-is-a-Proc.patch to fix
ActiveRecord relations with Ruby 2.3
* 0004-ActiveRecord-skip-a-few-tests-that-are-broken-on-Deb.patch skip some
tests that are broken on Debian.
-- Antonio Terceiro <terceiro@debian.org> Fri, 04 Mar 2016 14:49:00 -0300
rails (2:4.2.5.2-1) unstable; urgency=high
* New upstream release
* Fixes 2 security issues:
- [CVE-2016-2098] Possible remote code execution vulnerability in Action
Pack
- [CVE-2016-2097] Possible Information Leak Vulnerability in Action View.
-- Antonio Terceiro <terceiro@debian.org> Wed, 02 Mar 2016 11:50:02 -0300
rails (2:4.2.5.1-2) unstable; urgency=medium
* ruby-rails: change dependency from bundler to ruby-bundler, which will
not pull a development toolchain in Recommends:.
* Switch Vcs-* to https URLs
-- Antonio Terceiro <terceiro@debian.org> Sun, 21 Feb 2016 13:58:35 -0300
rails (2:4.2.5.1-1) unstable; urgency=high
* New upstream release. Includes fixes for the following several security
issues:
- [CVE-2015-7576] Timing attack vulnerability in basic authentication in
Action Controller.
- [CVE-2016-0751] Possible Object Leak and Denial of Service attack in
Action Pack
- [CVE-2015-7577] Nested attributes rejection proc bypass in Active Record.
- [CVE-2016-0752] Possible Information Leak Vulnerability in Action View
- [CVE-2016-0753] Possible Input Validation Circumvention in Active Model
- [CVE-2015-7581] Object leak vulnerability for wildcard controller routes
in Action Pack
-- Antonio Terceiro <terceiro@debian.org> Thu, 28 Jan 2016 10:56:35 -0200
rails (2:4.2.5-1) unstable; urgency=medium
* New upstream release
* Skip dependency resolution check during the build, because too many of the
dependencies of the binary packages depend on rails to build, so let's
avoid loops. The checks are still performed as part of autopkgtest tests,
anyway.
-- Antonio Terceiro <terceiro@debian.org> Mon, 14 Dec 2015 11:04:15 -0200
rails (2:4.2.4-2) unstable; urgency=medium
* Upload to unstable
-- Antonio Terceiro <terceiro@debian.org> Sat, 12 Dec 2015 16:24:01 -0200
rails (2:4.2.4-1) experimental; urgency=medium
* Team upload
* New upstream patch release
* Set minimum version for ruby-coffee-rails to 4.1.0
-- Pirate Praveen <praveen@debian.org> Tue, 15 Sep 2015 18:25:16 +0530
rails (2:4.2.3-4) experimental; urgency=medium
* Team upload
* ruby-activesupport: requires ruby-thread-safe >= 0.3.4, ruby-i18n >= 0.7
* ruby-actionview: requires ruby-html-sanitizer and ruby-dom-testing
* Check dependencies mentioned in gemspec
-- Pirate Praveen <praveen@debian.org> Thu, 20 Aug 2015 11:50:37 +0530
rails (2:4.2.3-3) experimental; urgency=medium
* ruby-actionmailer: Depends: ruby-activejob
* ruby-rails: requires ruby-turbolinks >= 2.5.3
* debian/copyright: remove mention of files removed upstream
-- Antonio Terceiro <terceiro@debian.org> Fri, 14 Aug 2015 10:54:45 -0300
rails (2:4.2.3-2) experimental; urgency=medium
* Team upload.
* Update dependency of ruby-arel for ruby-activerecord.
* Update dependency of ruby-rack for ruby-actionpack.
* Add new binary package: ruby-activejob.
* Add ruby-byebug and ruby-web-console to recommends for ruby-rails.
-- Pirate Praveen <praveen@debian.org> Fri, 07 Aug 2015 01:38:10 +0530
rails (2:4.2.3-1) experimental; urgency=medium
* Team upload.
* New upstream release; minor update.
-- Pirate Praveen <praveen@debian.org> Tue, 28 Jul 2015 11:21:45 +0530
rails (2:4.1.10-1) unstable; urgency=medium
* New upstream release; bug fixes only
* debian/copyright: fix mention to the license of
guides/assets/javascripts/jquery.min.js
* Drop transitional package ruby-activesupport-2.3; it was only needed for
upgrades from wheezy.
* Drop Breaks:/Replaces: relationships against packages provided by old
versioned source packages (e.g. *-2.3, *-3.2, *-4.0).
-- Antonio Terceiro <terceiro@debian.org> Sun, 24 May 2015 18:11:04 -0300
rails (2:4.1.8-1) unstable; urgency=medium
* New upstream release
- Includes only bug fixes and no behavior changes. In special, includes
fix for [CVE-2014-7818] and [CVE-2014-7829] (Arbitrary file existence
disclosure in Action Pack) (Closes: #770934)
* Add new transitional binary package ruby-activesupport-2.3 plus
appropriate Breaks:/Replaces: fieds in all binary packages to ensure
upgrades from wheezy work (Closes: #768850)
- Many thanks to Andreas Beckmann for helping debug the upgrade issue.
-- Antonio Terceiro <terceiro@debian.org> Tue, 25 Nov 2014 16:51:50 -0200
rails (2:4.1.6-2) unstable; urgency=medium
* fix upgrades from wheezy:
- Remove Breaks: against old packages provided by previous versions of
Rails The Replaces: fields, left untouched, outght to be enough.
- ruby-actionview: Replaces ruby-actionpack-{2.3,3.2} since
ruby-actionview contains files that used to be in ruby-actionpack-*
- ruby-railties: Breaks/Replaces rails (<< 2:4) since ruby-railties
contains /usr/bin/rails which used to be in rails.
* debian/copyright: minor updates
-- Antonio Terceiro <terceiro@debian.org> Tue, 30 Sep 2014 18:33:36 -0300
rails (2:4.1.6-1) unstable; urgency=medium
* New upstream release
* debian/patches/relax-dependencies.patch: dropped, not necessary anymore
-- Antonio Terceiro <terceiro@debian.org> Fri, 26 Sep 2014 15:59:24 -0300
rails (2:4.1.5-1) unstable; urgency=high
* New upstream release
- Fixes CVE-2014-3514: data validation bypass vulnerability
* debian/watch: update to fetch new releases from github.
-- Antonio Terceiro <terceiro@debian.org> Mon, 18 Aug 2014 15:19:04 -0300
rails (2:4.1.4-5) unstable; urgency=medium
* ruby-actionmailer: relax dependency on ruby-mail to work with the 2.6.x
series
-- Antonio Terceiro <terceiro@debian.org> Mon, 04 Aug 2014 14:38:18 -0300
rails (2:4.1.4-4) unstable; urgency=medium
* ruby-rails:
- add Recommends:
- ruby-jquery-rails
- ruby-coffee-rails
- ruby-sqlite3
- ruby-sass-rails
- ruby-uglifier
- ruby-spring
- ruby-turbolinks
- ruby-jbuilder
- ruby-sdoc
- add Breaks/Replaces: rails3
- bump Depends: ruby-sprockets-rails to (>= 2.1.3-1~)
- add Depends: ruby-treetop
- move ruby-activesuppport-3.2 from Breaks: to Conflicts:
- remove Breaks: rails (<< 2:4.1) since we now also provide a
`rails`` binary
* ruby-railties:
- remove Breaks: rails (<< 3:3.2.0)
* ruby-actionmailer:
- drop Depends: ruby-mail (<< 2.6)
cfe https://github.com/rails/rails/commit/bb0890d
* debian/tests/control: fix test dependencies to rails and *not* rails-3.2;
add needs-recommends instead of explicitly listing the recommended
packages
* debian/patches/mona_lisa.jpg_is_PD-Art_and_has_been_removed.patch: removed
as it does not make sense anymore (mona_lisa.jpg is just there).
-- Antonio Terceiro <terceiro@debian.org> Sun, 03 Aug 2014 00:24:26 -0300
rails (2:4.1.4-3) unstable; urgency=medium
* Re-add `rails` binary package
* Improve description for ruby-railties
-- Antonio Terceiro <terceiro@debian.org> Sat, 26 Jul 2014 10:12:46 -0300
rails (2:4.1.4-2) unstable; urgency=medium
[ Antonio Terceiro ]
* Don't install nonsensical binary from activesupport
[ Ondřej Surý ]
* Merge autopkgtests from rails-3.2
* Add missing sources for shCore.js and jquery.min.js
* Upload to unstable since no objections were raised to the RoR Debian
transition plan
* Remove repack script since there's nothing non-free in the upstream
tarball (Closes: #742407)
* Keep the guides/ (CC-BY-SA-3.0) and mona_lisa.jpg (PD), but document
that in d/copyright
-- Ondřej Surý <ondrej@debian.org> Wed, 16 Jul 2014 17:19:07 +0200
rails (2:4.1.4-1) experimental; urgency=medium
[ Antonio Terceiro ]
* debian/rules: adapt dh_clean call
[ Christian Hofstaedtler ]
* Relax dependencies
* Run bundle install --local, as in Debian Rails 3.2
[ Ondřej Surý ]
* New upstream version 4.1.4
* Drop versioning from rails package, we won't to provide just the last
stable upstream major version
* Update dependencies in d/control based on information from gemspec files
* Add ruby-actionview documentation
* Add conflict with old rails package
* Bump epoch to 2: to replace old virtual packages
* Update patches for 4.1.4 release
* Upload to experimental, so we can let the dust settle...
-- Ondřej Surý <ondrej@debian.org> Wed, 16 Jul 2014 15:22:28 +0200
rails-4.0 (4.0.2+dfsg-2) unstable; urgency=low
* Fix dependency -- ruby-rack doesn't have epoch (Closes: #731347)
* Move ruby-activerecord-deprecated-finders from Depends to Recommends
-- Ondřej Surý <ondrej@debian.org> Thu, 12 Dec 2013 13:15:00 +0100
rails-4.0 (4.0.2+dfsg-1) unstable; urgency=low
[ Antonio Terceiro ]
* ruby-actionpack-4.0: tighten versioned dependency on ruby-rack to take
epoch into account.
[ Ondřej Surý ]
* New upstream version 4.0.2+dfsg, fixes:
+ [CVE-2013-6417] Incomplete fix to CVE-2013-0155 (Unsafe Query Generation Risk)
+ [CVE-2013-4491] Reflective XSS Vulnerability in Ruby on Rails
+ [CVE-2013-6415] XSS Vulnerability in number_to_currency
+ [CVE-2013-6414] Denial of Service Vulnerability in Action View
+ [CVE-2013-6416] XSS Vulnerability in simple_format helper
-- Ondřej Surý <ondrej@debian.org> Wed, 04 Dec 2013 10:34:24 +0100
rails-4.0 (4.0.0+dfsg-1) unstable; urgency=low
[ Antonio Terceiro ]
* Migrate to use dh_ruby multi-binary support
[ Ondřej Surý ]
* Initial release of Rails 4.0
* Merge ruby-{active,action}*-X.Y packages into rails-4.0
* Add Copyright headers for syntaxhighlighter
* New upstream version 4.0.0+dfsg
* Update the package based on ftp-master review:
+ Weaken some Conflicts to Breaks (Keeping Conflicts for virtual
packages)
+ Generate actionpack/lib/action_dispatch/journey/parser.rb in the
build using racc
+ Fix copyright to include correct year: (c) 2004-2013 David
Heinemeier Hansson
+ Add MIT or CC-BY license for HTML selector by Assaf Arkin
+ PD-Art license is inconclusive, so we just remove the wikimedia Mona
Lisa picture and patch out the tests that were using it.
(http://commons.wikimedia.org/wiki/Commons:Reuse_of_PD-Art_photographs)
+ Just remove whole guides.rubyonrails.org content from source tarball
(We'll repackage it to ruby-rails-guides-4.0 as soon as we clear the
licensing with upstream.)
+ MIT-LICENSE in templates is needed for templating new projects, add
a lintian-override
* Add dversionmangle to debian/watch
-- Ondřej Surý <ondrej@debian.org> Fri, 19 Jul 2013 15:35:13 +0200
|