-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dev_support_sqlite
- Loading branch information
Showing
14 changed files
with
66 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
db/migrate/20240129140413_remove_obsolete_res7_repositories.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
class RemoveObsoleteRes7Repositories < ActiveRecord::Migration[6.1] | ||
def change | ||
# RES7 was historically a product managed by Novell. With the upcoming | ||
# SUSE Liberty 7, RES7 was moved into IBS (SUSE build service). | ||
# This resulted in repositories being renamed. | ||
# This migration removes the now obsolete repositories, since RMT does | ||
# not remove these automatically. | ||
|
||
# Affected repositories are: | ||
# - 1963: https://updates.suse.com/repo/$RCE/RES7/src/ | ||
# - 1736: https://updates.suse.com/repo/$RCE/RES7/x86_64/ | ||
Repository.where(scc_id: [1963, 1736]).destroy_all | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
------------------------------------------------------------------- | ||
Wed Oct 04 13:23:00 UTC 2023 - Felix Schnizlein <[email protected]> | ||
Thu Jan 25 17:40:00 UTC 2024 - Felix Schnizlein <[email protected]> | ||
|
||
- Version 2.15: | ||
* Moving system hardware information to systems database table to | ||
allow transmitting system information dynamically. (jsc#PED-3734) | ||
* Fix secrets access for server user (bsc#1215176) | ||
* Dropping Rails Secrets facilities and related config files (bsc#1215176) | ||
* rmt-client-setup-res script: fix for CentOS8 clients (bsc#1214709) | ||
* Updated supportconfig script (bsc#1216389) | ||
* Support zstd compression for repository metadata (bsc#1218775) | ||
* Do not add credential handling to normal repository URLs (#1219153) | ||
|
||
------------------------------------------------------------------- | ||
Thu Jun 06 15:44:00 UTC 2023 - Luís Caparroz <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters