This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
forked from candlepin/candlepin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
candlepin.spec.tmpl
8840 lines (8392 loc) · 482 KB
/
candlepin.spec.tmpl
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
%global _binary_filedigest_algorithm 8
%global _source_filedigest_algorithm 8
%global _binary_payload w9.gzdio
%global _source_payload w9.gzdio
%global selinux_variants mls minimum targeted
%global modulename candlepin
#if $artifacts
%global tar_gz_filename $artifacts['.gz'][0]
%global war_filename $artifacts['.war'][0]
## Remove the '-project-sources.tar.gz' suffix from the tar.gz filename, to get the source dir name
## e.g. candlepin-x.y.z.redhat-00000 from a file called candlepin-x.y.z.redhat-00000-project-sources.tar.gz
%global source_top_directory_name %(echo %{tar_gz_filename} | sed s/"-project-sources.tar.gz"// )
#end if
## If you follow the Java packaging guidelines, you
## only need to run brp-java-repack-jars on packages that include
## arch-independent JAR files under /usr/share and that also include
## GCJ-compiled .jar.so files.
%global __jar_repack %{nil}
Name: candlepin
Version: 4.4.4
Release: 1%{?dist}
#if $epoch
Epoch: $epoch
#end if
Summary: Candlepin is an open source entitlement management system
Group: System Environment/Daemons
URL: http://www.candlepinproject.org
License: GPLv2
Source0: %{tar_gz_filename}
Source1: %{war_filename}
Suggests: %{name}-selinux = %{version}-%{release}
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
BuildArch: noarch
BuildRequires: selinux-policy-doc
Requires: java-17 >= 1:17.0.0
Requires: wget
# TODO: remove the version restriction on Tomcat once CP supports the Java EE namespace changes
%if 0%{?fedora} || 0%{?rhel} >= 9
Requires: tomcat < 1:10.0.0
%else
Requires: pki-servlet-engine
%endif
Requires: javapackages-tools
%description
Candlepin is an open source entitlement management system.
## %package tomcat
## Summary: Candlepin web application for tomcat
## Requires: candlepin = %{version}
## %description tomcat
## Candlepin web application for tomcat
## %package devel
## Summary: Development libraries for candlepin integration
## Group: Development/Libraries
##
## %description devel
## Development libraries for candlepin integration
##
## %package certgen-lib
## Summary: candlepin certgen library for use by other apps
##
## %description certgen-lib
## candlepin library for use by other apps
%package selinux
Summary: SELinux policy module supporting candlepin
Group: System Environment/Base
BuildRequires: checkpolicy
BuildRequires: selinux-policy-devel
BuildRequires: util-linux
%if (0%{?rhel} && 0%{?rhel} < 9)
BuildRequires: hardlink
%endif
%{?selinux_requires}
Requires(post): /usr/sbin/semodule
Requires(post): /sbin/restorecon
Requires(post): /usr/sbin/semanage
Requires(postun): /usr/sbin/semodule
Requires(postun): /sbin/restorecon
Requires(postun): /usr/sbin/semanage
%description selinux
SELinux policy module supporting candlepin
%prep
%setup -n %{source_top_directory_name}
%build
cd selinux
#raw
for selinuxvariant in %{selinux_variants}
do
make NAME=$selinuxvariant -f /usr/share/selinux/devel/Makefile
mv %{modulename}.pp %{modulename}.pp.$selinuxvariant
make NAME=$selinuxvariant -f /usr/share/selinux/devel/Makefile clean
done
#end raw
cd -
%install
rm -rf %{buildroot}
## Create the directory structure required to lay down our files
## common
%{__install} -d -m 755 %{buildroot}/%{_sysconfdir}/%{name}/certs/upstream/
%{__install} -m 644 config/candlepin/candlepin-redhat-ca.crt %{buildroot}%{_sysconfdir}/%{name}/certs/upstream/
%{__install} -d 755 %{buildroot}%{_sysconfdir}/logrotate.d/
%{__install} -m 644 config/candlepin/logrotate.conf %{buildroot}%{_sysconfdir}/logrotate.d/%{name}
%{__install} -d -m 755 %{buildroot}/%{_datadir}/%{name}/
%{__install} -m 755 bin/scripts/code/setup/cpsetup %{buildroot}/%{_datadir}/%{name}/cpsetup
%{__install} -m 755 bin/scripts/code/setup/cpdb %{buildroot}/%{_datadir}/%{name}/cpdb
%{__install} -m 755 bin/deployment/liquibase.sh %{buildroot}/%{_datadir}/%{name}/liquibase.sh
%{__install} -d -m 755 %{buildroot}/%{_sysconfdir}/%{name}/
touch %{buildroot}/%{_sysconfdir}/%{name}/%{name}.conf
## tomcat
%{__install} -d -m 755 %{buildroot}/%{_sharedstatedir}/tomcat/webapps/%{name}
%{__install} -d -m 755 %{buildroot}/%{_sysconfdir}/tomcat/
%{__unzip} %{SOURCE1} -d %{buildroot}/%{_sharedstatedir}/tomcat/webapps/%{name}
%{__ln_s} /etc/candlepin/certs/keystore %{buildroot}/%{_sysconfdir}/tomcat/keystore
## /var/lib dir for hornetq state
%{__install} -d -m 755 %{buildroot}/%{_sharedstatedir}/%{name}
%{__install} -d -m 755 %{buildroot}/%{_localstatedir}/log/%{name}
%{__install} -d -m 755 %{buildroot}/%{_localstatedir}/cache/%{name}
cd selinux
#raw
for selinuxvariant in %{selinux_variants}
do
%{__install} -d %{buildroot}/%{_datadir}/selinux/packages/$selinuxvariant
%{__install} -p -m 644 %{modulename}.pp.$selinuxvariant %{buildroot}/%{_datadir}/selinux/packages/$selinuxvariant/%{modulename}.pp
done
%{__install} -D -p -m 0644 %{modulename}.if %{buildroot}%{_datadir}/selinux/devel/include/distributed/%{modulename}.if
#end raw
cd -
hardlink -cv %{buildroot}/%{_datadir}/selinux
%clean
rm -rf %{buildroot}
%post selinux
#raw
for selinuxvariant in %{selinux_variants}
do
/usr/sbin/semodule -X 400 -s $selinuxvariant -r %{modulename} &> /dev/null || :
/usr/sbin/semodule -X 200 -s $selinuxvariant -i %{_datadir}/selinux/packages/$selinuxvariant/%{modulename}.pp &> /dev/null || :
done
/usr/sbin/semanage port -a -t candlepin_activemq_port_t -p tcp 61613 &> /dev/null || :
#end raw
%posttrans selinux
#raw
/sbin/restorecon %{_localstatedir}/cache/thumbslug &> /dev/null || :
/sbin/restorecon -R %{_sysconfdir}/%{name}/ &> /dev/null || :
/sbin/restorecon -R %{_localstatedir}/cache/%{name}/ &> /dev/null || :
/sbin/restorecon -R %{_localstatedir}/lib/%{name}/ &> /dev/null || :
/sbin/restorecon -R %{_localstatedir}/log/%{name}/ &> /dev/null || :
#end raw
%postun selinux
#raw
if [ $1 -eq 0 ] ; then
/usr/sbin/semanage port -d 61613 -p tcp &> /dev/null || :
for selinuxvariant in %{selinux_variants}
do
/usr/sbin/semodule -X 200 -s $selinuxvariant -r %{modulename} &> /dev/null || :
done
/sbin/restorecon %{_localstatedir}/cache/thumbslug &> /dev/null || :
/sbin/restorecon -R %{_sysconfdir}/%{name}/ &> /dev/null || :
/sbin/restorecon -R %{_localstatedir}/cache/%{name}/ &> /dev/null || :
/sbin/restorecon -R %{_localstatedir}/lib/%{name}/ &> /dev/null || :
/sbin/restorecon -R %{_localstatedir}/log/%{name}/ &> /dev/null || :
fi
#end raw
%files
%defattr(-,root,root)
%doc LICENSE
%doc README.md
%dir %{_datadir}/%{name}
%{_datadir}/%{name}/cpsetup
%{_datadir}/%{name}/cpdb
%{_datadir}/%{name}/liquibase.sh
%ghost %attr(644, root, root) %{_sysconfdir}/%{name}/certs/candlepin-ca.crt
## Default is to track the rpm version of this cert for manifest signatures.
## If a deployment is managing their own, they will need to restore from the
## .rpmsave backup after upgrading the candlepin rpm.
%config %attr(644, root, root) %{_sysconfdir}/%{name}/certs/upstream/candlepin-redhat-ca.crt
%config(noreplace) %attr(644,root,root) %{_sysconfdir}/logrotate.d/candlepin
%defattr(644, tomcat, tomcat, 775)
%{_sharedstatedir}/tomcat/webapps/%{name}/*
%{_sharedstatedir}/%{name}
%{_localstatedir}/cache/%{name}
%config(noreplace) %{_sysconfdir}/tomcat/keystore
%defattr(600,tomcat,tomcat,-)
%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf
## log dir needs to be group root or not group writeable
## else logroate fails
%attr(750, tomcat, tomcat) %{_localstatedir}/log/%{name}
## logback.xml should not be overridden during rpm upgrade/install
%config(noreplace) %{_sharedstatedir}/tomcat/webapps/%{name}/WEB-INF/classes/logback.xml
%files selinux
%defattr(-,root,root,0755)
%doc selinux/*
%{_datadir}/selinux/packages/*/%{modulename}.pp
%{_datadir}/selinux/devel/include/distributed/%{modulename}.if
%ghost %verify(not md5 size mode mtime) %{_sharedstatedir}/selinux/minimum/active/modules/200/%{modulename}
#raw
%changelog
* Wed Jan 31 2024 candlepin-bot <[email protected]> 4.4.4-1
- Bump artemis from 2.31.2 to 2.32.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Add new translations using Weblate ([email protected])
- CANDLEPIN-779: Add API endpoint to cancel CloudAccountOrgSetupJobs
- Generate new Identity cert for claimed systems ([email protected])
- Bump gradle/gradle-build-action from 2 to 3
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump jwalton/gh-docker-logs
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.puppycrawl.tools:checkstyle from 10.12.7 to 10.13.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.keycloak:keycloak-servlet-filter-adapter from 23.0.4 to 23.0.5
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-778: Add API endpoint for Anonymous Consumer deletion
- CANDLEPIN-780: Remove brackets around entity type ([email protected])
- Bump io.swagger:swagger-annotations from 1.6.12 to 1.6.13
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.gradle.enterprise from 3.16.1 to 3.16.2
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.mockito:mockito-junit-jupiter from 5.9.0 to 5.10.0
(49699333+dependabot[bot]@users.noreply.github.com)
- updated po/keys.pot template ([email protected])
- Bump org.assertj:assertj-core from 3.25.1 to 3.25.2
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.github.ben-manes.versions from 0.50.0 to 0.51.0
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-718: Refactor DN construction ([email protected])
- CANDLEPIN-765: Remove Rules upload and delete ([email protected])
- CANDLEPIN-718: Turn BC provider into injectable dependency
- CANDLEPIN-774: HostedTestCloudRegistrationAdapter should decode metadata as
base64 ([email protected])
- Updated Candlepin health check in dev compose file - updated the Candlepin
health check to use curl with insecure option ([email protected])
- CANDLEPIN-773: Regenerate certs when org content prefix changes
- Code updates for openapi-generator changes ([email protected])
- Do not specify owner query param in Autoreg spec tests ([email protected])
- CANDLEPIN-754: Register late anonymous consumers to the claimant org
- CANDLEPIN-776: Updated the content prefix field name in EnvironmentDTO
- Revert "CANDLEPIN-735: Updated CI with removal of JSS dependency"
- CANDLEPIN-735: Updated CI with removal of JSS dependency - removed the use of
the fedora container in spec tests job - removed
.github/containers/Dockerfile - updated spec test job to use
containers/release.Containerfile - updated spec test job to build the
Candlepin war file - removed the use of the github network in github compose
files - removed login for the github container registry in spec test job
- CANDLEPIN-771: Fixed issues surrounding content path encoding
- CANDLEPIN-772: Fixed missing environment resource ([email protected])
- CANDLEPIN-762: Update overrides of openapi-generator to match new package
version ([email protected])
- Bump org.owasp.dependencycheck from 9.0.8 to 9.0.9
(49699333+dependabot[bot]@users.noreply.github.com)
- 2256950: Fix CertificateCleanupJob fk violation ([email protected])
- CANDLEPIN-770: Added max size for AnonymousCertContentCache - Added
configuration for adding max number of entries for
AnonymousCertContentCache - Added default value for new max size
configuration ([email protected])
- Bump io.opentelemetry.instrumentation:opentelemetry-instrumentation-
annotations (49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.mockito:mockito-junit-jupiter from 5.8.0 to 5.9.0
(49699333+dependabot[bot]@users.noreply.github.com)
- updated po/keys.pot template ([email protected])
- Bump io.smallrye.config:smallrye-config from 3.5.1 to 3.5.2
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-611: Change cert generation to Bouncycastle ([email protected])
- CANDLEPIN-323: Update exception handling for adapters ([email protected])
* Thu Jan 11 2024 candlepin-bot <[email protected]> 4.4.3-1
- Add new translations using Weblate ([email protected])
- Bump com.google.guava:guava from 32.1.3-jre to 33.0.0-jre
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-720: Implement Anonymous Owner Claim endpoint ([email protected])
- CANDLEPIN-695: Update environment APIs to support typing ([email protected])
- CANDLEPIN-696: Add "typed_environments" Candlepin capability
- CANDLEPIN-690: Update content prefix logic ([email protected])
- CANDLEPIN-694: Add environment types to database and API model
- CANDLEPIN-689: Add environment prefix ([email protected])
- Migrate to Gradle Version Catalog ([email protected])
- Log anonymous cert generation root cause errors ([email protected])
- CANDLEPIN-733: Created anonymous certificate content cache - Created
ConsumerCertificateContentCache to cache cert content - Added the cache to
the ContentAccessManager and attempt to use the cached content when
creating anonymous content access certificates - Removed unused
CloudRegistrationAdapter and PoolCurator from the ConsumerResource class
- Bump org.apache.tomcat:tomcat-annotations-api from 10.1.17 to 10.1.18
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.slf4j:jcl-over-slf4j from 2.0.10 to 2.0.11
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.slf4j:slf4j-api from 2.0.10 to 2.0.11
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.slf4j:log4j-over-slf4j from 2.0.10 to 2.0.11
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-739: Catch scenario with null event data ([email protected])
- Bump org.keycloak:keycloak-servlet-filter-adapter from 23.0.3 to 23.0.4
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.owasp:dependency-check-gradle from 9.0.7 to 9.0.8
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-731: Comparison for pool dates fails without milliseconds
- Update/add foreign keys around cp_anonymous_certificates
- Bump io.smallrye.config:smallrye-config from 3.5.0 to 3.5.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.assertj:assertj-core from 3.25.0 to 3.25.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.assertj:assertj-core from 3.24.2 to 3.25.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Fix ambiguous assert call ([email protected])
- Fix ambiguous constructor call ([email protected])
- Bump org.slf4j:log4j-over-slf4j from 2.0.9 to 2.0.10
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.slf4j:jcl-over-slf4j from 2.0.9 to 2.0.10
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.puppycrawl.tools:checkstyle from 10.12.6 to 10.12.7
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.slf4j:slf4j-api from 2.0.9 to 2.0.10
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.module:jackson-module-jsonSchema
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.datatype:jackson-datatype-hibernate5
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.dataformat:jackson-dataformat-xml
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.datatype:jackson-datatype-jdk8
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.core:jackson-databind from 2.15.3 to 2.16.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump io.smallrye.config:smallrye-config from 3.4.4 to 3.5.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.datatype:jackson-datatype-jsr310
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.dataformat:jackson-dataformat-yaml
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-728: Enable tracing for calls between Candlepin async jobs and
RHSM-API ([email protected])
- Fix autoregv2 reauthentication & other flow updates ([email protected])
- Bump org.mariadb.jdbc:mariadb-java-client from 3.3.1 to 3.3.2
(49699333+dependabot[bot]@users.noreply.github.com)
- cloud.enable set to true when hosted flag is used on deploy
- Bump org.owasp:dependency-check-gradle from 9.0.6 to 9.0.7
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.google.guava:guava from 32.1.3-jre to 33.0.0-jre
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.liquibase:liquibase-core from 4.24.0 to 4.25.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.keycloak:keycloak-servlet-filter-adapter from 23.0.2 to 23.0.3
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-742: Replaced CloudProvider enum for String - Replaced the
CloudProvider enum with String to remove the limitation put on the adapters
* Mon Dec 18 2023 candlepin-bot <[email protected]> 4.4.2-1
- Add new translations using Weblate ([email protected])
- updated po/keys.pot template ([email protected])
- CANDLEPIN-736: Updated entitlement certificate namespace logic
- Bump org.owasp:dependency-check-gradle from 9.0.5 to 9.0.6
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.keycloak:keycloak-servlet-filter-adapter from 23.0.1 to 23.0.2
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump actions/upload-artifact from 3 to 4
(49699333+dependabot[bot]@users.noreply.github.com)
- Close an unclosed stream ([email protected])
- Bump org.owasp:dependency-check-gradle from 9.0.4 to 9.0.5
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.gradle.enterprise from 3.16 to 3.16.1
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-674: Added data migration script for products and content
- Bump org.apache.tomcat:tomcat-annotations-api from 10.1.16 to 10.1.17
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.github.spotbugs:spotbugs-annotations from 4.8.2 to 4.8.3
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump dawidd6/action-download-artifact from 2 to 3
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-665: Create compose file for running candlepin:dev-latest container
image ([email protected])
- CANDLEPIN-738: Added dirtyProduct flag to the Pool entity ([email protected])
- CANDLEPIN-676: Removed OrphanCleanupJob ([email protected])
- CANDLEPIN-670: Update entitlement certificate generation to include product
namespace ([email protected])
- CANDLEPIN-706: Removed OwnerProductCurator and OwnerContentCurator
- CANDLEPIN-668: Added schema changes for entity layering ([email protected])
- Fix checkstyle dependency resolution ([email protected])
- Bump org.owasp:dependency-check-gradle from 9.0.3 to 9.0.4
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.postgresql:postgresql from 42.7.0 to 42.7.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.puppycrawl.tools:checkstyle from 10.12.5 to 10.12.6
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump actions/setup-python from 4 to 5
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.owasp:dependency-check-gradle from 9.0.2 to 9.0.3
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.gradle.enterprise from 3.15.1 to 3.16
(49699333+dependabot[bot]@users.noreply.github.com)
- Update commons-collections ([email protected])
- Bump org.mockito:mockito-junit-jupiter from 5.7.0 to 5.8.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.owasp:dependency-check-gradle from 9.0.1 to 9.0.2
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump ch.qos.logback:logback-classic from 1.4.13 to 1.4.14
(49699333+dependabot[bot]@users.noreply.github.com)
- Fix ConcurrentModificationException in import spectests ([email protected])
- Bump commons-io:commons-io from 2.15.0 to 2.15.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.mariadb.jdbc:mariadb-java-client from 3.3.0 to 3.3.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Disable refreshing broker.xml at runtime ([email protected])
- Bump actions/setup-java from 3 to 4
(49699333+dependabot[bot]@users.noreply.github.com)
- Update Gradle Wrapper from 8.4 to 8.5. ([email protected])
- Bump org.keycloak:keycloak-servlet-filter-adapter from 23.0.0 to 23.0.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump ch.qos.logback:logback-classic from 1.4.12 to 1.4.13
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.github.spotbugs:spotbugs-annotations from 4.8.1 to 4.8.2
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump ch.qos.logback:logback-classic from 1.4.11 to 1.4.12
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.netflix.nebula:gradle-lint-plugin from 18.1.0 to 19.0.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Expunge scripts from the olden days ([email protected])
- Bump org.owasp:dependency-check-gradle from 9.0.0 to 9.0.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Add new translations using Weblate ([email protected])
- updated po/keys.pot template ([email protected])
- Bump org.keycloak:keycloak-servlet-filter-adapter from 22.0.5 to 23.0.0
(49699333+dependabot[bot]@users.noreply.github.com)
* Fri Nov 24 2023 candlepin-bot <[email protected]> 4.4.1-1
- Add new translations using Weblate ([email protected])
- Fix flaky CloudAccountOrgSetupJob spec test ([email protected])
- Bump org.owasp:dependency-check-gradle from 8.4.3 to 9.0.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Fix job spec test timeouts ([email protected])
- Bump org.apache.commons:commons-lang3 from 3.13.0 to 3.14.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.postgresql:postgresql from 42.6.0 to 42.7.0
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-722: Fix CloudAccountOrgSetupJob owner creation error
- updated po/keys.pot template ([email protected])
- Readded log collection for GH actions spec tests ([email protected])
- CANDLEPIN-318: Added new utility for abstract universal paging logic
- Added the manifest generator test extension ([email protected])
* Fri Nov 17 2023 Nikos Moumoulidis <[email protected]> 4.4.0-1
- Bump com.github.ben-manes:gradle-versions-plugin from 0.49.0 to 0.50.0
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-684: Revoke anonymous certificate ([email protected])
- Update GH action to include feature branches ([email protected])
- CANDLEPIN-630: Implement Eventual Registration using an Anonymous Bearer
Token ([email protected])
- Add CloudAccountOrgSetupJob org mismatch case exception ([email protected])
- Make CloudAccountOrgSetupJob retries indefinite ([email protected])
- CANDLEPIN-707: Handle rejection for 1P offering systems ([email protected])
- CANDLEPIN-697: Update CertificateCleanupJob to cleanup anonymous certs
- CANDLEPIN-626: Added anonymous content access certificate - added support for
fetching anonymous content access certificates ([email protected])
- CANDLEPIN-686: Add cloud offering ID to anonymous cloud consumer - fix
anonymous cloud consumer instance ID max length ([email protected])
- CANDLEPIN-657: Update authentication method strings ([email protected])
- CANDLEPIN-657: Record authentication method on consumer registration
- CANDLEPIN-675: Update anon cloud consumers to store multiple SKUs - updated
cloud offering hosted test endpoint to use multiple products -
PoolCurator.hasPoolForProduct updated to check pools for multiple products
- CANDLEPIN-625: Added anonymous bearer token authentication
- CANDLEPIN-621: Added auto reg 2.0 instance metadata authentication
- CANDLEPIN-646: Add anonymous and claimed fields on Owner API
- CANDLEPIN-623: Implement Anonymous Org Creation & Entitlement Job
- Bump org.owasp:dependency-check-gradle from 8.4.2 to 8.4.3
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.apache.tomcat:tomcat-annotations-api from 10.1.15 to 10.1.16
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.puppycrawl.tools:checkstyle from 10.12.4 to 10.12.5
(49699333+dependabot[bot]@users.noreply.github.com)
- Build Github actions spec test containers using docker compose build -
Removed the Github actions build_image job - Added build section to spec
Github actions docker-compose files ([email protected])
- Updated manifest export testing to better production usage ([email protected])
- Bump io.smallrye.config:smallrye-config from 3.4.3 to 3.4.4
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.mariadb.jdbc:mariadb-java-client from 3.2.0 to 3.3.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump io.smallrye.config:smallrye-config from 3.4.1 to 3.4.3
(49699333+dependabot[bot]@users.noreply.github.com)
- Enable sonar scan for feature branches ([email protected])
- Bump com.github.spotbugs:spotbugs-annotations from 4.8.0 to 4.8.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump io.gsonfire:gson-fire from 1.8.5 to 1.9.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.junit.jupiter:junit-jupiter from 5.10.0 to 5.10.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.mockito:mockito-junit-jupiter from 5.6.0 to 5.7.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Enable sonar base scan for all feature branches ([email protected])
- Bump org.apache.activemq:artemis-stomp-protocol from 2.31.1 to 2.31.2
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.apache.activemq:artemis-server from 2.31.1 to 2.31.2
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-693: Fix flaky VirtSpecTest ([email protected])
- Bump org.apache.activemq:artemis-stomp-protocol from 2.31.0 to 2.31.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump commons-io:commons-io from 2.14.0 to 2.15.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.apache.activemq:artemis-server from 2.31.0 to 2.31.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Use the 'latest' libvirt images from cloud.centos.org ([email protected])
- Bump org.keycloak:keycloak-servlet-filter-adapter from 22.0.4 to 22.0.5
(49699333+dependabot[bot]@users.noreply.github.com)
- Add new translations using Weblate ([email protected])
- Remove unused/obsolete maven repos ([email protected])
- Updated release.Containerfile to use latest ubi9 as base image
- Bump org.owasp:dependency-check-gradle from 8.4.0 to 8.4.2
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-692: Remove Jenkins container setup ([email protected])
- Bump com.sun.xml.bind:jaxb-core from 4.0.3 to 4.0.4
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.sun.xml.bind:jaxb-impl from 4.0.3 to 4.0.4
(49699333+dependabot[bot]@users.noreply.github.com)
- Remove deprecated liquibase cli option ([email protected])
- Bump 8BitJonny/gh-get-current-pr
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.squareup.okhttp3:okhttp from 4.11.0 to 4.12.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.apache.tomcat:tomcat-annotations-api from 10.1.14 to 10.1.15
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.module:jackson-module-jsonSchema
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump io.swagger:swagger-annotations from 1.6.11 to 1.6.12
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.dataformat:jackson-dataformat-xml
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.datatype:jackson-datatype-jdk8
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.core:jackson-databind from 2.15.2 to 2.15.3
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.dataformat:jackson-dataformat-yaml
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.datatype:jackson-datatype-hibernate5
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.datatype:jackson-datatype-jsr310
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.github.spotbugs:spotbugs-annotations from 4.7.3 to 4.8.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.adarshr:gradle-test-logger-plugin from 3.2.0 to 4.0.0
(49699333+dependabot[bot]@users.noreply.github.com)
- updated po/keys.pot template ([email protected])
- Bump com.google.guava:guava from 32.1.2-jre to 32.1.3-jre
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.apache.tomcat:tomcat-annotations-api from 10.1.13 to 10.1.14
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-600: Resolve PoolRules dependency cycle ([email protected])
- Bump org.mockito:mockito-junit-jupiter from 5.5.0 to 5.6.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.github.ben-manes:gradle-versions-plugin from 0.48.0 to 0.49.0
(49699333+dependabot[bot]@users.noreply.github.com)
- 2242299: Fix date-time parsing for If-Modified-Since header
- Bump com.gradle.enterprise from 3.15 to 3.15.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Update Gradle Wrapper from 8.3 to 8.4. ([email protected])
- Enable i18n job for new candlepin-4.3-HOTFIX branch ([email protected])
- Bump org.liquibase:liquibase-core from 4.23.2 to 4.24.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.keycloak:keycloak-servlet-filter-adapter from 22.0.3 to 22.0.4
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.sonarsource.scanner.gradle:sonarqube-gradle-plugin
(49699333+dependabot[bot]@users.noreply.github.com)
- Update Gradle Wrapper from 8.2.1 to 8.3. ([email protected])
- Bump actions/checkout from 3 to 4
(49699333+dependabot[bot]@users.noreply.github.com)
- Gradle Wrapper auto-update workflow ([email protected])
- Bump commons-io:commons-io from 2.13.0 to 2.14.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.puppycrawl.tools:checkstyle from 10.12.3 to 10.12.4
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump io.smallrye.config:smallrye-config from 3.4.0 to 3.4.1
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-599: Remove Guice Injector ([email protected])
* Mon Oct 02 2023 candlepin-bot <[email protected]> 4.3.9-1
- Add new translations using Weblate ([email protected])
- CANDLEPIN-683: Fixed missing permission in ak management blueprint
- Enable sonar & CI re-runs for autoreg v2 feature branch ([email protected])
- Bump org.sonarsource.scanner.gradle:sonarqube-gradle-plugin
(49699333+dependabot[bot]@users.noreply.github.com)
- updated po/keys.pot template ([email protected])
- Fix confusing string in Spec API ([email protected])
* Wed Sep 27 2023 candlepin-bot <[email protected]> 4.3.8-1
- Revert "CANDLEPIN-623: Implement Anonymous Org Creation & Entitlement Job"
- Revert "CANDLEPIN-621: Added auto reg 2.0 instance metadata authentication"
- Revert "CANDLEPIN-646: Add anonymous and claimed fields on Owner API"
- Bump io.smallrye.config:smallrye-config from 3.3.4 to 3.4.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Add new translations using Weblate ([email protected])
- Disallow creating consumers in org without permission ([email protected])
- Add new translations using Weblate ([email protected])
- Bump actions/checkout from 3 to 4
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump docker/build-push-action from 4 to 5
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump docker/login-action from 2 to 3
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump docker/setup-buildx-action from 2 to 3
(49699333+dependabot[bot]@users.noreply.github.com)
- Fix to run sonar only agains main branch ([email protected])
- Bump org.apache.activemq:artemis-server from 2.30.0 to 2.31.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.apache.activemq:artemis-stomp-protocol from 2.30.0 to 2.31.0
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-652: Added documentation for using the new container images
- Remove Jenkins runs from project ([email protected])
- CANDLEPIN-653: Implement solution for sonar to work in forks
- Bump com.puppycrawl.tools:checkstyle from 10.12.1 to 10.12.3
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-641: Revert to checkstyle ([email protected])
- CANDLEPIN-253: Remove obsolete Maven/Mead code from candlepin
- updated po/keys.pot template ([email protected])
- 2213261: Ensure pool lock order for activation keys ([email protected])
- CANDLEPIN-619: Re-run PR workflow when target branch gets pushed
- Bump org.keycloak:keycloak-servlet-filter-adapter from 22.0.2 to 22.0.3
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.gradle.enterprise from 3.14.1 to 3.15
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump docker/build-push-action from 4 to 5
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump docker/login-action from 2 to 3
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump docker/setup-buildx-action from 2 to 3
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.liquibase:liquibase-core from 4.23.1 to 4.23.2
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.github.ben-manes:gradle-versions-plugin from 0.47.0 to 0.48.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.keycloak:keycloak-servlet-filter-adapter from 22.0.1 to 22.0.2
(49699333+dependabot[bot]@users.noreply.github.com)
- Collecting logs from spec tests runners in GH action ([email protected])
- CANDLEPIN-419: Remove circular dependency ([email protected])
- CANDLEPIN-349: Remove assisted injection ([email protected])
- CANDLEPIN-621: Added auto reg 2.0 instance metadata authentication
- Bump org.slf4j:slf4j-api from 2.0.7 to 2.0.9
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.slf4j:jcl-over-slf4j from 2.0.7 to 2.0.9
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.slf4j:log4j-over-slf4j from 2.0.7 to 2.0.9
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump actions/checkout from 3 to 4
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.sonarsource.scanner.gradle:sonarqube-gradle-plugin
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump io.smallrye.config:smallrye-config from 3.3.3 to 3.3.4
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-650: Reverted date/time serialization change ([email protected])
- CANDLEPIN-646: Add anonymous and claimed fields on Owner API
- Remove fedora container from CI ([email protected])
- CANDLEPIN-648: Fixed NPE when activating subscriptions in standalone
- CANDLEPIN-635: Update publish plugin to create candlepi-api artifact
- Bump com.diffplug.spotless:spotless-plugin-gradle from 6.20.0 to 6.21.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.mariadb.jdbc:mariadb-java-client from 3.1.4 to 3.2.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.apache.tomcat:tomcat-annotations-api from 10.1.12 to 10.1.13
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump info.picocli:picocli from 4.7.4 to 4.7.5
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-550: Created build stage for dev Candlepin image
- CANDLEPIN-431: Reorganize creation of Object Mappers ([email protected])
- Bump org.mockito:mockito-junit-jupiter from 5.4.0 to 5.5.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.owasp:dependency-check-gradle from 8.3.1 to 8.4.0
(49699333+dependabot[bot]@users.noreply.github.com)
- 2231503: Add condition for index creation ([email protected])
- 2231503: CertificateCleanupJob execution takes a very long time
- Update healt check for GH action compose file ([email protected])
- Bump org.apache.tomcat:tomcat-annotations-api from 10.1.11 to 10.1.12
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.liquibase:liquibase-core from 4.23.0 to 4.23.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump ch.qos.logback:logback-classic from 1.4.10 to 1.4.11
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-642: Investigate Spotless issues and find potential solutions
- Bump ch.qos.logback:logback-classic from 1.4.9 to 1.4.10
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump ch.qos.logback:logback-classic from 1.4.8 to 1.4.9
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump io.smallrye.config:smallrye-config from 3.3.2 to 3.3.3
(49699333+dependabot[bot]@users.noreply.github.com)
- Enable sonar for dependabot ([email protected])
- CANDLEPIN-619: Run workflow against actual base branch ([email protected])
- Add new translations using Weblate ([email protected])
- During i18n job, only check for diffs on the .pot file ([email protected])
- CANDLEPIN-598: Remove uses of property injection ([email protected])
- Update Gradle Wrapper to version 8.2.1 ([email protected])
- CANDLEPIN-623: Implement Anonymous Org Creation & Entitlement Job
- CANDLEPIN-638: Relax auth restrictions for activation key management
- Added configuration for gitleaks ([email protected])
- Bump com.google.guava:guava from 32.1.1-jre to 32.1.2-jre
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.apache.commons:commons-lang3 from 3.12.0 to 3.13.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.apache.activemq:artemis-stomp-protocol from 2.29.0 to 2.30.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.apache.activemq:artemis-server from 2.29.0 to 2.30.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.gradle.enterprise from 3.14 to 3.14.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.diffplug.spotless:spotless-plugin-gradle from 6.19.0 to 6.20.0
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-593: Implement conversion to Spotless from Checkstyle
- Bump org.junit.jupiter:junit-jupiter from 5.9.3 to 5.10.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.junit.jupiter:junit-jupiter-params from 5.9.3 to 5.10.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.junit.jupiter:junit-jupiter-api from 5.9.3 to 5.10.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Added trigger for merge queue ([email protected])
- Bump org.junit.jupiter:junit-jupiter-engine from 5.9.3 to 5.10.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Fix JUnit null param parsing ([email protected])
- updated po/keys.pot template ([email protected])
- updated po/keys.pot template ([email protected])
- updated po/keys.pot template ([email protected])
- CANDLEPIN-613: Migrated the i18n job to GH actions ([email protected])
- CANDLEPIN-173: Created containerfile for production image - Updated spec test
containerfile to use entrypoint - Added null check to RyeConfig.toProperties
method ([email protected])
* Wed Jul 19 2023 candlepin-bot <[email protected]> 4.3.7-1
- Bump com.gradle.enterprise from 3.13.4 to 3.14
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump io.smallrye.config:smallrye-config from 3.3.1 to 3.3.2
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.keycloak:keycloak-servlet-filter-adapter from 22.0.0 to 22.0.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.sonarsource.scanner.gradle:sonarqube-gradle-plugin
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-600: Stop passing pool manager as param ([email protected])
- CANDLEPIN-531: Update RHEL dependency from pki-servlet-engine to tomcat
- CANDLEPIN-631: CloudRegistrationSpecTest not running in GH actions
- Bump org.keycloak:keycloak-servlet-filter-adapter from 21.1.2 to 22.0.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.apache.tomcat:tomcat-annotations-api from 10.1.10 to 10.1.11
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump io.smallrye.config:smallrye-config from 3.3.0 to 3.3.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.google.jimfs:jimfs from 1.2 to 1.3.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.gradle.enterprise from 3.13.3 to 3.13.4
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.google.guava:guava from 32.1.0-jre to 32.1.1-jre
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.owasp:dependency-check-gradle from 8.2.1 to 8.3.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.google.guava:guava from 32.0.1-jre to 32.1.0-jre
(49699333+dependabot[bot]@users.noreply.github.com)
- Fix snakeyaml version conflict ([email protected])
- Fix fork checks for dependabot ([email protected])
- Remove assign reviewer workflow ([email protected])
- Revert "CANDLEPIN-580: Fixed various remapping issues during refresh"
- Bump org.keycloak:keycloak-servlet-filter-adapter from 21.1.1 to 21.1.2
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump commons-codec:commons-codec from 1.15 to 1.16.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Revert "CANDLEPIN-589: Added support for forced-update owner refresh"
- Bump org.liquibase:liquibase-core from 4.22.0 to 4.23.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.puppycrawl.tools:checkstyle from 10.12.0 to 10.12.1
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-610: Allow spec tests to run for forked PRs - updated postgres
docker-compose health check - updated spec test Dockerfile to use UBI 9 base
image ([email protected])
- Move sonar scan to PR workflow ([email protected])
- Updated pom.xml to reflect recent changes to build.gradle ([email protected])
- Bump com.netflix.nebula:gradle-lint-plugin from 18.0.3 to 18.1.0
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-600: Move isManaged check to pool ([email protected])
- CANDLEPIN-485: Normalized the Owner model object ([email protected])
- CANDLEPIN-601: Resolve circular dependency: PoolManager -> OwnerManager
- Revert concurrency limit ([email protected])
- CANDLEPIN-411: Removed obsolete serialization filters ([email protected])
- Fix test coverage in Sonar scan ([email protected])
- Bump org.apache.activemq:artemis-stomp-protocol from 2.28.0 to 2.29.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Minor spec test optimization ([email protected])
- Bump org.mockito:mockito-junit-jupiter from 5.3.1 to 5.4.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump net.logstash.logback:logstash-logback-encoder from 7.3 to 7.4
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.apache.activemq:artemis-server from 2.28.0 to 2.29.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Enable Gradle Build Scan on GH Actions ([email protected])
- CANDLEPIN-603: Update Java version in build images ([email protected])
- Bump com.sun.xml.bind:jaxb-core from 4.0.2 to 4.0.3
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-600: PoolManager cleanup ([email protected])
- Install unzip before extracting test reports ([email protected])
- CANDLEPIN-504: Migrated spec tests to GH Actions ([email protected])
- Remove sonar exclusions from gradle in favor of sonarcloud config
- Run Sonar scan as a separate workflow ([email protected])
- Bump com.sun.xml.bind:jaxb-impl from 4.0.2 to 4.0.3
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.sonarsource.scanner.gradle:sonarqube-gradle-plugin
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump io.smallrye.config:smallrye-config from 3.2.1 to 3.3.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.apache.tomcat:tomcat-annotations-api from 10.1.9 to 10.1.10
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump ch.qos.logback:logback-classic from 1.4.7 to 1.4.8
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.google.guava:guava from 32.0.0-jre to 32.0.1-jre
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.github.ben-manes:gradle-versions-plugin from 0.46.0 to 0.47.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump commons-io:commons-io from 2.12.0 to 2.13.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.apache.tomcat:tomcat-annotations-api from 10.0.0 to 10.1.9
(49699333+dependabot[bot]@users.noreply.github.com)
- Update sonar exclusions to prevent misleading QG failures ([email protected])
- 2090316: Migrate Candlepin config to smallrye-config ([email protected])
- Fix 'Invalid maximum heap size' for gradle sonar ([email protected])
- Bump info.picocli:picocli from 4.7.3 to 4.7.4
(49699333+dependabot[bot]@users.noreply.github.com)
- Increase gradle memory for sonar analysis reports ([email protected])
- Bump com.fasterxml.jackson.datatype:jackson-datatype-jsr310
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.sonarsource.scanner.gradle:sonarqube-gradle-plugin
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.dataformat:jackson-dataformat-xml
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.datatype:jackson-datatype-jdk8
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.datatype:jackson-datatype-hibernate5
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-505: Migrate sonar to GH Actions ([email protected])
- CANDLEPIN-589: Added support for forced-update owner refresh
- Cancel outdated GH Actions workflows on new commits ([email protected])
- Bump com.fasterxml.jackson.module:jackson-module-jsonSchema
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.hsqldb:hsqldb from 2.7.1 to 2.7.2
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.dataformat:jackson-dataformat-yaml
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.core:jackson-databind from 2.15.1 to 2.15.2
(49699333+dependabot[bot]@users.noreply.github.com)
- Add Sonarcloud long-lived branch analysis GH Action ([email protected])
- Bump com.google.guava:guava from 31.1-jre to 32.0.0-jre
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.puppycrawl.tools:checkstyle from 10.11.0 to 10.12.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.sonarsource.scanner.gradle:sonarqube-gradle-plugin
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-569: Run liquibase update on startup ([email protected])
- CANDLEPIN-565: Updated dev environment cert generation script
* Fri May 19 2023 candlepin-bot <[email protected]> 4.3.6-1
- Add new translations using Weblate ([email protected])
- CP-571: Update cpdb to reflect current use ([email protected])
- Bump com.fasterxml.jackson.datatype:jackson-datatype-jsr310
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.core:jackson-databind from 2.15.0 to 2.15.1
(49699333+dependabot[bot]@users.noreply.github.com)
- Updated Guice Persist and Guice Servlet to version 6.0.0 ([email protected])
- Bump com.fasterxml.jackson.datatype:jackson-datatype-hibernate5
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.dataformat:jackson-dataformat-yaml
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.module:jackson-module-jsonSchema
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.datatype:jackson-datatype-jdk8
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.fasterxml.jackson.dataformat:jackson-dataformat-xml
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.google.inject.extensions:guice-assistedinject
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump commons-io:commons-io from 2.11.0 to 2.12.0
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump com.puppycrawl.tools:checkstyle from 10.10.0 to 10.11.0
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-580: Fixed various remapping issues during refresh
- Bump io.swagger:swagger-annotations from 1.6.10 to 1.6.11
(49699333+dependabot[bot]@users.noreply.github.com)
- Bump org.liquibase:liquibase-core from 4.21.1 to 4.22.0
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-580: Fixed missing null-as-empty check in content equality test
- Fix Bugzilla check for PRs from public forks ([email protected])
* Wed May 10 2023 candlepin-bot <[email protected]> 4.3.5-1
- Add new translations using Weblate ([email protected])
- CANDLEPIN-522: Move spec test execution outside of container
- CANDLEPIN-570: Consolidate database changelog scripts ([email protected])
- Fix random unit test failures ([email protected])
- Removed string concatenation from translated messages ([email protected])
- CANDLEPIN-120: Add setup for PNC build ([email protected])
* Fri May 05 2023 candlepin-bot <[email protected]> 4.3.4-1
- Add new translations using Weblate ([email protected])
- Use shell script for source translation generation ([email protected])
- Bump org.mariadb.jdbc:mariadb-java-client from 3.1.3 to 3.1.4
(49699333+dependabot[bot]@users.noreply.github.com)
- CANDLEPIN-503: Migrated bugzilla reference to Github actions