Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to scheme version 4.0.0 #157

Open
wants to merge 39 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
bb14d9a
Update database schemes to 4.0
deathaxe Aug 16, 2022
c021c44
Update package_control to origin/four-point-oh
deathaxe Aug 18, 2022
1507a19
Add task to create channel_v4.json
deathaxe Aug 19, 2022
76c10c1
Revert "Avoid some object copies"
deathaxe Aug 21, 2022
9096f29
Fix __all__ values
deathaxe Aug 20, 2022
92bbf7d
Update package_control
deathaxe Aug 27, 2022
ab039db
Fix possible unbound variable warning
deathaxe Aug 21, 2022
b8845de
Fix marking packages missing due to hitting rate limits
deathaxe Aug 27, 2022
a069c61
Upgrade package_control/four-point-oh
deathaxe Aug 30, 2022
05d8fbf
Adjustments for new http_get()
deathaxe Aug 30, 2022
5ad7962
Cleanup generate_channel imports
deathaxe Aug 30, 2022
ef7653f
Update tasks update_package_control_lib
deathaxe Aug 30, 2022
8484fef
Update ChannelProvider
deathaxe Sep 3, 2022
52b11d5
Sync with Package Control
deathaxe Feb 7, 2023
c5757d8
Sync with Package Control
deathaxe Mar 21, 2023
ec99b16
Fix package model
deathaxe Mar 21, 2023
28250f7
Sync with Package Control
deathaxe Apr 1, 2023
fa27a8e
Add upstream package python_versions declaration support
deathaxe Apr 7, 2023
593c151
Add missing modules
deathaxe May 10, 2023
f9168ba
Tweak update_package_control_lib task
deathaxe Jul 7, 2023
b287923
Sync with Package Control
deathaxe Jul 23, 2023
4f4e861
Sync with Package Control
deathaxe Sep 13, 2023
492ce55
Sync with Package Control
deathaxe Oct 8, 2023
7f0bd8b
Sync with Package Control
deathaxe Oct 28, 2023
f0a68b2
Fix JsonRepositoryProvider reference names
deathaxe Oct 30, 2023
38c1cf6
Fix KeyError on optional python_versions key
deathaxe Oct 30, 2023
a8afd57
Sync with Package Control
deathaxe Oct 30, 2023
be1d4f1
Update settings, crawl at most 1 release
deathaxe Oct 30, 2023
f8e1a47
Fix initial database scheme
deathaxe Oct 30, 2023
7983643
Adjustable cache path
deathaxe Oct 29, 2023
8a6ff6c
Sync with Package Control
deathaxe Oct 31, 2023
c188e34
Sync with Package Control
deathaxe Nov 5, 2023
2c0ea00
Sync with Package Control
deathaxe Nov 9, 2023
8582693
On demand channel.json creation
deathaxe Nov 9, 2023
aba4da2
Sync with Package Control
deathaxe Nov 25, 2023
4fa7302
Add repository test schema 4.0.0 support
deathaxe Nov 26, 2023
5fb72c3
Adjust removed packages to new model
deathaxe Nov 26, 2023
ed92350
Sync with Package Control 4.0.3
deathaxe Mar 9, 2024
52b072f
Sync with Package Control 4.0.7
deathaxe Jun 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions app/lib/ca_certs_legacy.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

from .package_control.cmd import Cli
from .package_control.ca_certs import get_system_ca_bundle_path
from .package_control.open_compat import open_compat, read_compat



def find_root_ca_cert(settings, domain):
Expand Down Expand Up @@ -50,8 +48,8 @@ def find_root_ca_cert(settings, domain):
def get_ca_cert_by_subject(settings, subject):
bundle_path = get_system_ca_bundle_path(settings)

with open_compat(bundle_path, 'r') as f:
contents = read_compat(f)
with open(bundle_path, 'r', encoding='utf-8') as f:
contents = f.read()

temp = []

Expand Down
4 changes: 2 additions & 2 deletions app/lib/package_control/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "3.4.1"
__version_info__ = (3, 4, 1)
__version__ = "4.0.0-beta9"
__version_info__ = (4, 0, 0, 'beta', 9)
Loading