mirror of
https://github.com/Mic92/nix-update.git
synced 2024-11-03 21:04:49 +03:00
Merge pull request #228 from lilyinstarlight/feature/version-prefixed-unstable-versions
prefix unstable version numbers with latest release per current guidelines
This commit is contained in:
commit
ff99539e61
@ -26,5 +26,9 @@ def fetch_bitbucket_snapshots(url: ParseResult, branch: str) -> list[Version]:
|
||||
commits_url = f'https://{url.netloc}/!api/2.0/repositories/{owner}/{repo}/refs?q=name="{branch}"'
|
||||
resp = urlopen(commits_url)
|
||||
ref = json.loads(resp.read())["values"][0]["target"]
|
||||
|
||||
versions = fetch_bitbucket_versions(url)
|
||||
latest_version = versions[0].number if versions else "0"
|
||||
|
||||
date = ref["date"][:10] # to YYYY-MM-DD
|
||||
return [Version(f"unstable-{date}", rev=ref["hash"])]
|
||||
return [Version(f"{latest_version}-unstable-{date}", rev=ref["hash"])]
|
||||
|
@ -29,5 +29,8 @@ def fetch_gitea_snapshots(url: ParseResult, branch: str) -> list[Version]:
|
||||
if commit is None:
|
||||
return []
|
||||
|
||||
versions = fetch_gitea_versions(url)
|
||||
latest_version = versions[0].number if versions else "0"
|
||||
|
||||
date = commit["commit"]["committer"]["date"][:10]
|
||||
return [Version(f"unstable-{date}", rev=commit["sha"])]
|
||||
return [Version(f"{latest_version}-unstable-{date}", rev=commit["sha"])]
|
||||
|
@ -47,6 +47,9 @@ def fetch_github_snapshots(url: ParseResult, branch: str) -> list[Version]:
|
||||
tree = ET.fromstring(resp.read())
|
||||
commits = tree.findall(".//{http://www.w3.org/2005/Atom}entry")
|
||||
|
||||
versions = fetch_github_versions(url)
|
||||
latest_version = versions[0].number if versions else "0"
|
||||
|
||||
for entry in commits:
|
||||
link = entry.find("{http://www.w3.org/2005/Atom}link")
|
||||
updated = entry.find("{http://www.w3.org/2005/Atom}updated")
|
||||
@ -56,6 +59,6 @@ def fetch_github_snapshots(url: ParseResult, branch: str) -> list[Version]:
|
||||
url = urlparse(link.attrib["href"])
|
||||
commit = url.path.rsplit("/", maxsplit=1)[-1]
|
||||
date = updated.text.split("T", maxsplit=1)[0]
|
||||
return [Version(f"unstable-{date}", rev=commit)]
|
||||
return [Version(f"{latest_version}-unstable-{date}", rev=commit)]
|
||||
|
||||
return []
|
||||
|
@ -51,8 +51,15 @@ def fetch_gitlab_snapshots(url: ParseResult, branch: str) -> list[Version]:
|
||||
info(f"fetch {gitlab_url}")
|
||||
resp = urllib.request.urlopen(gitlab_url)
|
||||
commits = json.load(resp)
|
||||
|
||||
versions = fetch_gitlab_versions(url)
|
||||
latest_version = versions[0].number if versions else "0"
|
||||
|
||||
for commit in commits:
|
||||
date = datetime.strptime(commit["committed_date"], "%Y-%m-%dT%H:%M:%S.000%z")
|
||||
date -= date.utcoffset() # type: ignore[operator]
|
||||
return [Version(date.strftime("unstable-%Y-%m-%d"), rev=commit["id"])]
|
||||
commit_date = datetime.strptime(
|
||||
commit["committed_date"], "%Y-%m-%dT%H:%M:%S.000%z"
|
||||
)
|
||||
commit_date -= commit_date.utcoffset() # type: ignore[operator]
|
||||
date = commit_date.strftime("%Y-%m-%d")
|
||||
return [Version(f"{latest_version}-unstable-{date}", rev=commit["id"])]
|
||||
return []
|
||||
|
@ -1,385 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xml:lang="en-US">
|
||||
<id>tag:github.com,2008:/Mic92/nix-update/commits/master</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commits/master"/>
|
||||
<link type="application/atom+xml" rel="self" href="https://github.com/Mic92/nix-update/commits/master.atom"/>
|
||||
<title>Recent Commits to nix-update:master</title>
|
||||
<updated>2021-12-13T14:02:42Z</updated>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/79dcae59a9d16ec003bda4e232319db2fb83e252</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/79dcae59a9d16ec003bda4e232319db2fb83e252"/>
|
||||
<title>
|
||||
Merge pull request #74 from Mic92/mypy-fix
|
||||
</title>
|
||||
<updated>2021-12-13T14:02:42Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&u=9ed15c85825694d00e996d605d728179b830c4fa&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Merge pull request #74 from Mic92/mypy-fix
|
||||
|
||||
fix mypy</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/8e88950e6cab1f2b5e7be759b14e21cef7e6615d</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/8e88950e6cab1f2b5e7be759b14e21cef7e6615d"/>
|
||||
<title>
|
||||
fix mypy
|
||||
</title>
|
||||
<updated>2021-12-13T14:00:12Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&u=9ed15c85825694d00e996d605d728179b830c4fa&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>fix mypy</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/4692eb3a5cd27cc0cbce2cafe013271b62c8ec03</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/4692eb3a5cd27cc0cbce2cafe013271b62c8ec03"/>
|
||||
<title>
|
||||
Merge pull request #72 from Mic92/dependabot/github_actions/cachix/in…
|
||||
</title>
|
||||
<updated>2021-11-22T07:01:11Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&u=9ed15c85825694d00e996d605d728179b830c4fa&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Merge pull request #72 from Mic92/dependabot/github_actions/cachix/install-nix-action-16
|
||||
|
||||
Bump cachix/install-nix-action from 15 to 16</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/4efc9f1f37f555b326cfb722572506a099c71e53</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/4efc9f1f37f555b326cfb722572506a099c71e53"/>
|
||||
<title>
|
||||
Bump cachix/install-nix-action from 15 to 16
|
||||
</title>
|
||||
<updated>2021-11-22T06:01:34Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/in/29110?s=30&v=4"/>
|
||||
<author>
|
||||
<name>dependabot</name>
|
||||
<uri>https://github.com/dependabot</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Bump cachix/install-nix-action from 15 to 16
|
||||
|
||||
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 15 to 16.
|
||||
- [Release notes](https://github.com/cachix/install-nix-action/releases)
|
||||
- [Commits](https://github.com/cachix/install-nix-action/compare/v15...v16)
|
||||
|
||||
---
|
||||
updated-dependencies:
|
||||
- dependency-name: cachix/install-nix-action
|
||||
dependency-type: direct:production
|
||||
update-type: version-update:semver-major
|
||||
...
|
||||
|
||||
Signed-off-by: dependabot[bot] &lt;support@github.com&gt;</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/b668fe6ea0b3d8464a1ede78d7306f309a6fb7f6</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/b668fe6ea0b3d8464a1ede78d7306f309a6fb7f6"/>
|
||||
<title>
|
||||
Merge pull request #70 from Mic92/ci
|
||||
</title>
|
||||
<updated>2021-11-15T07:45:54Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&u=9ed15c85825694d00e996d605d728179b830c4fa&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Merge pull request #70 from Mic92/ci
|
||||
|
||||
drop install_url</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/079aac11c75d03e534e948a5f8cfa2bb6f5ffd52</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/079aac11c75d03e534e948a5f8cfa2bb6f5ffd52"/>
|
||||
<title>
|
||||
drop install_url
|
||||
</title>
|
||||
<updated>2021-11-15T07:40:32Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&u=9ed15c85825694d00e996d605d728179b830c4fa&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>drop install_url</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/a494f951a76c77c796dd739ce18717a989a9ec2c</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/a494f951a76c77c796dd739ce18717a989a9ec2c"/>
|
||||
<title>
|
||||
Merge pull request #69 from Mic92/dependabot/github_actions/cachix/in…
|
||||
</title>
|
||||
<updated>2021-11-15T07:39:58Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&u=9ed15c85825694d00e996d605d728179b830c4fa&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Merge pull request #69 from Mic92/dependabot/github_actions/cachix/install-nix-action-15
|
||||
|
||||
Bump cachix/install-nix-action from 14 to 15</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/543030454c3e65e10b4ce6dc18f2f0f3b65c5484</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/543030454c3e65e10b4ce6dc18f2f0f3b65c5484"/>
|
||||
<title>
|
||||
Bump cachix/install-nix-action from 14 to 15
|
||||
</title>
|
||||
<updated>2021-11-15T06:00:49Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/in/29110?s=30&v=4"/>
|
||||
<author>
|
||||
<name>dependabot</name>
|
||||
<uri>https://github.com/dependabot</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Bump cachix/install-nix-action from 14 to 15
|
||||
|
||||
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 14 to 15.
|
||||
- [Release notes](https://github.com/cachix/install-nix-action/releases)
|
||||
- [Commits](https://github.com/cachix/install-nix-action/compare/v14...v15)
|
||||
|
||||
---
|
||||
updated-dependencies:
|
||||
- dependency-name: cachix/install-nix-action
|
||||
dependency-type: direct:production
|
||||
update-type: version-update:semver-major
|
||||
...
|
||||
|
||||
Signed-off-by: dependabot[bot] &lt;support@github.com&gt;</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/52582817e8c6474c23b2855aa4bed2b53e708741</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/52582817e8c6474c23b2855aa4bed2b53e708741"/>
|
||||
<title>
|
||||
Merge pull request #67 from Mic92/dependabot/github_actions/cachix/in…
|
||||
</title>
|
||||
<updated>2021-09-13T11:29:28Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&u=9ed15c85825694d00e996d605d728179b830c4fa&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Merge pull request #67 from Mic92/dependabot/github_actions/cachix/install-nix-action-14
|
||||
|
||||
Bump cachix/install-nix-action from 13 to 14</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/72527c376744fb03f9558b7bb7b4195b082268d8</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/72527c376744fb03f9558b7bb7b4195b082268d8"/>
|
||||
<title>
|
||||
Bump cachix/install-nix-action from 13 to 14
|
||||
</title>
|
||||
<updated>2021-09-13T06:00:54Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/in/29110?s=30&v=4"/>
|
||||
<author>
|
||||
<name>dependabot</name>
|
||||
<uri>https://github.com/dependabot</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Bump cachix/install-nix-action from 13 to 14
|
||||
|
||||
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 13 to 14.
|
||||
- [Release notes](https://github.com/cachix/install-nix-action/releases)
|
||||
- [Commits](https://github.com/cachix/install-nix-action/compare/v13...v14)
|
||||
|
||||
---
|
||||
updated-dependencies:
|
||||
- dependency-name: cachix/install-nix-action
|
||||
dependency-type: direct:production
|
||||
update-type: version-update:semver-major
|
||||
...
|
||||
|
||||
Signed-off-by: dependabot[bot] &lt;support@github.com&gt;</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/70bdf762e5be36ddea70234daa0d476fea0498ff</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/70bdf762e5be36ddea70234daa0d476fea0498ff"/>
|
||||
<title>
|
||||
README: migrate from restructured text
|
||||
</title>
|
||||
<updated>2021-09-02T04:57:00Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&u=9ed15c85825694d00e996d605d728179b830c4fa&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>README: migrate from restructured text</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/b167cc623191bc8bb1afbc7f3ab5ac0a039f70dd</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/b167cc623191bc8bb1afbc7f3ab5ac0a039f70dd"/>
|
||||
<title>
|
||||
Merge pull request #65 from Mic92/cargo-sha256
|
||||
</title>
|
||||
<updated>2021-08-26T13:48:04Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&u=9ed15c85825694d00e996d605d728179b830c4fa&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Merge pull request #65 from Mic92/cargo-sha256
|
||||
|
||||
allow to upload cargo checksum when source is local</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/2f498d50d7d70217557804907244062cb35a9e6b</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/2f498d50d7d70217557804907244062cb35a9e6b"/>
|
||||
<title>
|
||||
don't require valid version if --version=skip
|
||||
</title>
|
||||
<updated>2021-08-26T13:45:05Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&u=9ed15c85825694d00e996d605d728179b830c4fa&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>don&#39;t require valid version if --version=skip</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/008e69ed04e4ff2bc962bb2b5c1e04bb3c725cb5</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/008e69ed04e4ff2bc962bb2b5c1e04bb3c725cb5"/>
|
||||
<title>
|
||||
allow to upload cargo checksum when source is local
|
||||
</title>
|
||||
<updated>2021-08-26T11:08:18Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&u=9ed15c85825694d00e996d605d728179b830c4fa&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>allow to upload cargo checksum when source is local</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/474e358eeab1dbeabddd0a16ecf647695e90f43b</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/474e358eeab1dbeabddd0a16ecf647695e90f43b"/>
|
||||
<title>
|
||||
Merge pull request #63 from Mic92/nixos-tests
|
||||
</title>
|
||||
<updated>2021-08-21T12:58:05Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&u=9ed15c85825694d00e996d605d728179b830c4fa&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Merge pull request #63 from Mic92/nixos-tests
|
||||
|
||||
fix evaluation on macos for pkgs with tests</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/bec42b219b9d4dfe6cef6abd5e71b4753996e00a</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/bec42b219b9d4dfe6cef6abd5e71b4753996e00a"/>
|
||||
<title>
|
||||
fix evaluation on macos for pkgs with tests
|
||||
</title>
|
||||
<updated>2021-08-21T08:33:02Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&u=9ed15c85825694d00e996d605d728179b830c4fa&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>fix evaluation on macos for pkgs with tests
|
||||
|
||||
fixes https://github.com/Mic92/nix-update/issues/62</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/3c77336eecf836c34b866271a58f74f1dc2a524d</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/3c77336eecf836c34b866271a58f74f1dc2a524d"/>
|
||||
<title>
|
||||
Merge pull request #60 from SuperSandro2000/sourcehut
|
||||
</title>
|
||||
<updated>2021-08-15T22:27:59Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&u=9ed15c85825694d00e996d605d728179b830c4fa&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Merge pull request #60 from SuperSandro2000/sourcehut
|
||||
|
||||
Add sourcehut support, minor cleanups</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/3ece737ad749ca480072921f145ca1b7d9da5498</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/3ece737ad749ca480072921f145ca1b7d9da5498"/>
|
||||
<title>
|
||||
Fix tests
|
||||
</title>
|
||||
<updated>2021-08-15T22:23:35Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/7258858?s=30&u=c524720e2844ffa8a2aa67944fde5af54031e06d&v=4"/>
|
||||
<author>
|
||||
<name>SuperSandro2000</name>
|
||||
<uri>https://github.com/SuperSandro2000</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Fix tests</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/45fef9987cc850c36a8ed2bca0177f44b267f095</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/45fef9987cc850c36a8ed2bca0177f44b267f095"/>
|
||||
<title>
|
||||
Add lorri files to run tests
|
||||
</title>
|
||||
<updated>2021-08-15T22:23:35Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/7258858?s=30&u=c524720e2844ffa8a2aa67944fde5af54031e06d&v=4"/>
|
||||
<author>
|
||||
<name>SuperSandro2000</name>
|
||||
<uri>https://github.com/SuperSandro2000</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Add lorri files to run tests</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/6ae3eb12864a4d5945f21a870ca4c97208a3a325</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/6ae3eb12864a4d5945f21a870ca4c97208a3a325"/>
|
||||
<title>
|
||||
Remove unused import
|
||||
</title>
|
||||
<updated>2021-08-15T15:09:09Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/7258858?s=30&u=c524720e2844ffa8a2aa67944fde5af54031e06d&v=4"/>
|
||||
<author>
|
||||
<name>SuperSandro2000</name>
|
||||
<uri>https://github.com/SuperSandro2000</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Remove unused import</pre>
|
||||
</content>
|
||||
</entry>
|
||||
</feed>
|
@ -13,8 +13,10 @@ TEST_ROOT = Path(__file__).parent.resolve()
|
||||
|
||||
|
||||
def fake_urlopen(url: str) -> BinaryIO:
|
||||
del url
|
||||
return open(TEST_ROOT.joinpath("test_branch.atom"), "rb")
|
||||
if url.endswith("releases.atom"):
|
||||
return open(TEST_ROOT.joinpath("test_branch_releases.atom"), "rb")
|
||||
else:
|
||||
return open(TEST_ROOT.joinpath("test_branch_commits_master.atom"), "rb")
|
||||
|
||||
|
||||
def test_branch(helpers: conftest.Helpers) -> None:
|
||||
@ -27,5 +29,5 @@ def test_branch(helpers: conftest.Helpers) -> None:
|
||||
"(.*)",
|
||||
"master",
|
||||
).number
|
||||
== "unstable-2021-12-13"
|
||||
== "1.2.0-unstable-2024-02-19"
|
||||
)
|
||||
|
383
tests/test_branch_commits_master.atom
Normal file
383
tests/test_branch_commits_master.atom
Normal file
@ -0,0 +1,383 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xml:lang="en-US">
|
||||
<id>tag:github.com,2008:/Mic92/nix-update/commits/master</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commits/master"/>
|
||||
<link type="application/atom+xml" rel="self" href="https://github.com/Mic92/nix-update/commits/master.atom"/>
|
||||
<title>Recent Commits to nix-update:master</title>
|
||||
<updated>2024-02-19T14:47:50Z</updated>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/37e9b32f335b8bfafd764f49de573141f85d3416</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/37e9b32f335b8bfafd764f49de573141f85d3416"/>
|
||||
<title>
|
||||
bump version 1.2.0
|
||||
</title>
|
||||
<updated>2024-02-19T14:47:50Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>bump version 1.2.0</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/a566b9bdb17bc394cbbefdd274b54432edec6d3f</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/a566b9bdb17bc394cbbefdd274b54432edec6d3f"/>
|
||||
<title>
|
||||
print maintainers list
|
||||
</title>
|
||||
<updated>2024-01-25T10:38:41Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/33058747?s=30&v=4"/>
|
||||
<author>
|
||||
<name>GaetanLepage</name>
|
||||
<uri>https://github.com/GaetanLepage</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>print maintainers list</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/6e4ee6941a8f8b3ae636fc62da06f9314e46d3d3</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/6e4ee6941a8f8b3ae636fc62da06f9314e46d3d3"/>
|
||||
<title>
|
||||
make gitlab updater work by tag when releases are disabled
|
||||
</title>
|
||||
<updated>2024-01-17T14:56:30Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/298109?s=30&v=4"/>
|
||||
<author>
|
||||
<name>lilyinstarlight</name>
|
||||
<uri>https://github.com/lilyinstarlight</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>make gitlab updater work by tag when releases are disabled</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/ae70579d8d6736009387d8d76869c7193a08d813</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/ae70579d8d6736009387d8d76869c7193a08d813"/>
|
||||
<title>
|
||||
bump version 1.1.0
|
||||
</title>
|
||||
<updated>2024-01-16T11:35:20Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>bump version 1.1.0</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/da997c87c73f05eddc2aec3335d4a557a8dd2ca6</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/da997c87c73f05eddc2aec3335d4a557a8dd2ca6"/>
|
||||
<title>
|
||||
create-release: make sed regex more strict
|
||||
</title>
|
||||
<updated>2024-01-16T10:25:52Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>create-release: make sed regex more strict</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/36ffca82d29b04bf285baf65ece4d11ddac42594</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/36ffca82d29b04bf285baf65ece4d11ddac42594"/>
|
||||
<title>
|
||||
Merge pull request #217 from Mic92/composer-support
|
||||
</title>
|
||||
<updated>2024-01-16T10:12:47Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Merge pull request #217 from Mic92/composer-support
|
||||
|
||||
Add support for updating buildComposerProject&#39;s vendorHash</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/0a30179f00f5a1a6c8422281b9580138b6f83074</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/0a30179f00f5a1a6c8422281b9580138b6f83074"/>
|
||||
<title>
|
||||
Add support for updating buildComposerProject's vendorHash
|
||||
</title>
|
||||
<updated>2024-01-16T10:06:16Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/498465?s=30&v=4"/>
|
||||
<author>
|
||||
<name>gaelreyrol</name>
|
||||
<uri>https://github.com/gaelreyrol</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Add support for updating buildComposerProject&#39;s vendorHash
|
||||
|
||||
Update tests/testpkgs/default.nix</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/b80494da434277508fa968e6f1628d139b002c8f</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/b80494da434277508fa968e6f1628d139b002c8f"/>
|
||||
<title>
|
||||
Update README.md to precise that software is available in latest stab…
|
||||
</title>
|
||||
<updated>2024-01-15T09:59:58Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Update README.md to precise that software is available in latest stable channel (23.11 as of today) (#215)
|
||||
Update README.md
|
||||
|
||||
Update the README to precise that the software is also in the latest stable channel, currently 23.11, shows that it has version 1.0.0 of nix-update (https://search.nixos.org/packages?channel=23.11&amp;show=nix-update&amp;from=0&amp;size=50&amp;sort=relevance&amp;type=packages&amp;query=nix-update)
|
||||
|
||||
* Update README.md
|
||||
|
||||
* Update README.md</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/50640aa288176dbc96346edeb8806dd44293d3e7</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/50640aa288176dbc96346edeb8806dd44293d3e7"/>
|
||||
<title>
|
||||
Bump cachix/install-nix-action from 24 to 25
|
||||
</title>
|
||||
<updated>2024-01-15T06:33:58Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/in/29110?s=30&v=4"/>
|
||||
<author>
|
||||
<name>dependabot</name>
|
||||
<uri>https://github.com/dependabot</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Bump cachix/install-nix-action from 24 to 25
|
||||
|
||||
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 24 to 25.
|
||||
- [Release notes](https://github.com/cachix/install-nix-action/releases)
|
||||
- [Commits](https://github.com/cachix/install-nix-action/compare/v24...v25)
|
||||
|
||||
---
|
||||
updated-dependencies:
|
||||
- dependency-name: cachix/install-nix-action
|
||||
dependency-type: direct:production
|
||||
update-type: version-update:semver-major
|
||||
...
|
||||
|
||||
Signed-off-by: dependabot[bot] &lt;support@github.com&gt;</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/4c763a7cf3770d043ef0351a40726b0f65c35eac</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/4c763a7cf3770d043ef0351a40726b0f65c35eac"/>
|
||||
<title>
|
||||
README: document `--version=branch` option in more depth
|
||||
</title>
|
||||
<updated>2024-01-04T08:26:43Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/18599032?s=30&v=4"/>
|
||||
<author>
|
||||
<name>Atemu</name>
|
||||
<uri>https://github.com/Atemu</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>README: document `--version=branch` option in more depth</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/dcdf594417903919c827a91178eac0c1f56feca5</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/dcdf594417903919c827a91178eac0c1f56feca5"/>
|
||||
<title>
|
||||
Bump cachix/install-nix-action from 23 to 24
|
||||
</title>
|
||||
<updated>2023-12-04T06:08:06Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/in/29110?s=30&v=4"/>
|
||||
<author>
|
||||
<name>dependabot</name>
|
||||
<uri>https://github.com/dependabot</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>Bump cachix/install-nix-action from 23 to 24
|
||||
|
||||
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 23 to 24.
|
||||
- [Release notes](https://github.com/cachix/install-nix-action/releases)
|
||||
- [Commits](https://github.com/cachix/install-nix-action/compare/v23...v24)
|
||||
|
||||
---
|
||||
updated-dependencies:
|
||||
- dependency-name: cachix/install-nix-action
|
||||
dependency-type: direct:production
|
||||
update-type: version-update:semver-major
|
||||
...
|
||||
|
||||
Signed-off-by: dependabot[bot] &lt;support@github.com&gt;</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/76c4e79c2c500e03c19abf2beb0d8b18134cf977</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/76c4e79c2c500e03c19abf2beb0d8b18134cf977"/>
|
||||
<title>
|
||||
bitbucket.org integration tests
|
||||
</title>
|
||||
<updated>2023-11-22T19:13:43Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/4167946?s=30&v=4"/>
|
||||
<author>
|
||||
<name>EBADBEEF</name>
|
||||
<uri>https://github.com/EBADBEEF</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>bitbucket.org integration tests</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/a10f7c047f243a4c2076261187967246388f91ac</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/a10f7c047f243a4c2076261187967246388f91ac"/>
|
||||
<title>
|
||||
bitbucket.org support for versions and snapshots
|
||||
</title>
|
||||
<updated>2023-11-22T19:13:43Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/4167946?s=30&v=4"/>
|
||||
<author>
|
||||
<name>EBADBEEF</name>
|
||||
<uri>https://github.com/EBADBEEF</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>bitbucket.org support for versions and snapshots</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/f6f45655e7b09c9f9155d4aac1d41eab37392c28</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/f6f45655e7b09c9f9155d4aac1d41eab37392c28"/>
|
||||
<title>
|
||||
README: drop comment about black formatter
|
||||
</title>
|
||||
<updated>2023-11-08T07:58:55Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>README: drop comment about black formatter</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/47945865f6683351c15842ed7efa990d21b975dd</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/47945865f6683351c15842ed7efa990d21b975dd"/>
|
||||
<title>
|
||||
flake.lock: Update
|
||||
</title>
|
||||
<updated>2023-11-08T07:58:55Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>flake.lock: Update
|
||||
|
||||
Flake lock file updates:
|
||||
|
||||
• Updated input &#39;nixpkgs&#39;:
|
||||
&#39;github:NixOS/nixpkgs/c082856b850ec60cda9f0a0db2bc7bd8900d708c&#39; (2023-11-02)
|
||||
→ &#39;github:NixOS/nixpkgs/ec750fd01963ab6b20ee1f0cb488754e8036d89d&#39; (2023-11-07)</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/d945764f13d207ba2610d53ae2f3c7802ab8ab09</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/d945764f13d207ba2610d53ae2f3c7802ab8ab09"/>
|
||||
<title>
|
||||
nix fmt
|
||||
</title>
|
||||
<updated>2023-11-08T07:58:55Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>nix fmt</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/6f21bf4db4256cb9d913cda8f987b138718e261c</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/6f21bf4db4256cb9d913cda8f987b138718e261c"/>
|
||||
<title>
|
||||
improve --help output, notably '--version' possibilities
|
||||
</title>
|
||||
<updated>2023-11-08T07:58:55Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/886074?s=30&v=4"/>
|
||||
<author>
|
||||
<name>teto</name>
|
||||
<uri>https://github.com/teto</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>improve --help output, notably &#39;--version&#39; possibilities</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/c690b76213ca791b53c55a8f6abc18bcc0049e04</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/c690b76213ca791b53c55a8f6abc18bcc0049e04"/>
|
||||
<title>
|
||||
switch to ruff for formatting
|
||||
</title>
|
||||
<updated>2023-11-02T09:26:15Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>switch to ruff for formatting</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/5e679528f6a181a163b7a177ce49fd9232709592</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/5e679528f6a181a163b7a177ce49fd9232709592"/>
|
||||
<title>
|
||||
flake.lock: Update
|
||||
</title>
|
||||
<updated>2023-11-02T09:26:15Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>flake.lock: Update
|
||||
|
||||
Flake lock file updates:
|
||||
|
||||
• Updated input &#39;flake-parts&#39;:
|
||||
&#39;github:hercules-ci/flake-parts/7f53fdb7bdc5bb237da7fefef12d099e4fd611ca&#39; (2023-09-01)
|
||||
→ &#39;github:hercules-ci/flake-parts/8c9fa2545007b49a5db5f650ae91f227672c3877&#39; (2023-11-01)
|
||||
• Updated input &#39;nixpkgs&#39;:
|
||||
&#39;github:NixOS/nixpkgs/517501bcf14ae6ec47efd6a17dda0ca8e6d866f9&#39; (2023-09-27)
|
||||
→ &#39;github:NixOS/nixpkgs/c082856b850ec60cda9f0a0db2bc7bd8900d708c&#39; (2023-11-02)
|
||||
• Updated input &#39;treefmt-nix&#39;:
|
||||
&#39;github:numtide/treefmt-nix/720bd006d855b08e60664e4683ccddb7a9ff614a&#39; (2023-09-27)
|
||||
→ &#39;github:numtide/treefmt-nix/5deb8dc125a9f83b65ca86cf0c8167c46593e0b1&#39; (2023-10-27)</pre>
|
||||
</content>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Grit::Commit/957b6c4dacdc748f7c2867e26bc861903eeea70d</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/commit/957b6c4dacdc748f7c2867e26bc861903eeea70d"/>
|
||||
<title>
|
||||
nix-update: publish to flakestry
|
||||
</title>
|
||||
<updated>2023-10-24T16:10:39Z</updated>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=30&v=4"/>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
<uri>https://github.com/Mic92</uri>
|
||||
</author>
|
||||
<content type="html">
|
||||
<pre style='white-space:pre-wrap;width:81ex'>nix-update: publish to flakestry</pre>
|
||||
</content>
|
||||
</entry>
|
||||
</feed>
|
199
tests/test_branch_releases.atom
Normal file
199
tests/test_branch_releases.atom
Normal file
@ -0,0 +1,199 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xml:lang="en-US">
|
||||
<id>tag:github.com,2008:https://github.com/Mic92/nix-update/releases</id>
|
||||
<link type="text/html" rel="alternate" href="https://github.com/Mic92/nix-update/releases"/>
|
||||
<link type="application/atom+xml" rel="self" href="https://github.com/Mic92/nix-update/releases.atom"/>
|
||||
<title>Release notes from nix-update</title>
|
||||
<updated>2024-02-19T14:47:50Z</updated>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Repository/245145732/1.2.0</id>
|
||||
<updated>2024-02-19T14:48:23Z</updated>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/Mic92/nix-update/releases/tag/1.2.0"/>
|
||||
<title>1.2.0</title>
|
||||
<content type="html"><h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>make gitlab updater work by tag when releases are disabled by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/lilyinstarlight/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/lilyinstarlight">@lilyinstarlight</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2085235481" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/219" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/219/hovercard" href="https://github.com/Mic92/nix-update/pull/219">#219</a></li>
|
||||
<li>print maintainers list by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/GaetanLepage/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/GaetanLepage">@GaetanLepage</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2099698047" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/222" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/222/hovercard" href="https://github.com/Mic92/nix-update/pull/222">#222</a></li>
|
||||
</ul>
|
||||
<h2>New Contributors</h2>
|
||||
<ul>
|
||||
<li><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/lilyinstarlight/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/lilyinstarlight">@lilyinstarlight</a> made their first contribution in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2085235481" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/219" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/219/hovercard" href="https://github.com/Mic92/nix-update/pull/219">#219</a></li>
|
||||
<li><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/GaetanLepage/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/GaetanLepage">@GaetanLepage</a> made their first contribution in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2099698047" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/222" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/222/hovercard" href="https://github.com/Mic92/nix-update/pull/222">#222</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/Mic92/nix-update/compare/1.1.0...1.1.1"><tt>1.1.0...1.1.1</tt></a></p>
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>make gitlab updater work by tag when releases are disabled by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/lilyinstarlight/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/lilyinstarlight">@lilyinstarlight</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2085235481" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/219" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/219/hovercard" href="https://github.com/Mic92/nix-update/pull/219">#219</a></li>
|
||||
<li>print maintainers list by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/GaetanLepage/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/GaetanLepage">@GaetanLepage</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2099698047" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/222" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/222/hovercard" href="https://github.com/Mic92/nix-update/pull/222">#222</a></li>
|
||||
</ul>
|
||||
<h2>New Contributors</h2>
|
||||
<ul>
|
||||
<li><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/lilyinstarlight/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/lilyinstarlight">@lilyinstarlight</a> made their first contribution in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2085235481" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/219" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/219/hovercard" href="https://github.com/Mic92/nix-update/pull/219">#219</a></li>
|
||||
<li><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/GaetanLepage/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/GaetanLepage">@GaetanLepage</a> made their first contribution in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2099698047" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/222" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/222/hovercard" href="https://github.com/Mic92/nix-update/pull/222">#222</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/Mic92/nix-update/compare/1.1.0...1.2.0"><tt>1.1.0...1.2.0</tt></a></p></content>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
</author>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=60&v=4"/>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Repository/245145732/1.1.0</id>
|
||||
<updated>2024-01-16T11:38:43Z</updated>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/Mic92/nix-update/releases/tag/1.1.0"/>
|
||||
<title>1.1.0</title>
|
||||
<content type="html"><h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>Support bitbucket.org by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/EBADBEEF/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/EBADBEEF">@EBADBEEF</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2006328534" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/208" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/208/hovercard" href="https://github.com/Mic92/nix-update/pull/208">#208</a></li>
|
||||
<li>Add support for updating buildComposerProject's vendorHash by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Mic92/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Mic92">@Mic92</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2083525539" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/217" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/217/hovercard" href="https://github.com/Mic92/nix-update/pull/217">#217</a></li>
|
||||
</ul>
|
||||
<h2>New Contributors</h2>
|
||||
<ul>
|
||||
<li><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/EBADBEEF/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/EBADBEEF">@EBADBEEF</a> made their first contribution in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2006328534" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/208" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/208/hovercard" href="https://github.com/Mic92/nix-update/pull/208">#208</a></li>
|
||||
<li><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Atemu/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Atemu">@Atemu</a> made their first contribution in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2064906340" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/213" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/213/hovercard" href="https://github.com/Mic92/nix-update/pull/213">#213</a></li>
|
||||
<li><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/AkechiShiro/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/AkechiShiro">@AkechiShiro</a> made their first contribution in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2080900275" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/215" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/215/hovercard" href="https://github.com/Mic92/nix-update/pull/215">#215</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/Mic92/nix-update/compare/1.0.0...1.1.0"><tt>1.0.0...1.1.0</tt></a></p></content>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
</author>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=60&v=4"/>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Repository/245145732/1.0.0</id>
|
||||
<updated>2023-09-30T09:18:22Z</updated>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/Mic92/nix-update/releases/tag/1.0.0"/>
|
||||
<title>1.0.0</title>
|
||||
<content type="html"><p>This has been stable for a long time. Time to bump the version to 1.0.0!</p>
|
||||
<h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>quote <code>import_path</code> when importing in nix by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/figsoda/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/figsoda">@figsoda</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1863534200" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/191" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/191/hovercard" href="https://github.com/Mic92/nix-update/pull/191">#191</a></li>
|
||||
<li>ruff: enable upgrade checks by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Mic92/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Mic92">@Mic92</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1866442457" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/192" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/192/hovercard" href="https://github.com/Mic92/nix-update/pull/192">#192</a></li>
|
||||
<li>unquote versions from github atom feeds by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/figsoda/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/figsoda">@figsoda</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1884608615" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/193" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/193/hovercard" href="https://github.com/Mic92/nix-update/pull/193">#193</a></li>
|
||||
<li>support for updating yarn FOD hash by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/yu-re-ka/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/yu-re-ka">@yu-re-ka</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1021395791" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/68" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/68/hovercard" href="https://github.com/Mic92/nix-update/pull/68">#68</a></li>
|
||||
<li>Modernize buildsystem by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Mic92/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Mic92">@Mic92</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1920179986" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/199" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/199/hovercard" href="https://github.com/Mic92/nix-update/pull/199">#199</a></li>
|
||||
</ul>
|
||||
<h2>New Contributors</h2>
|
||||
<ul>
|
||||
<li><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/yu-re-ka/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/yu-re-ka">@yu-re-ka</a> made their first contribution in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1021395791" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/68" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/68/hovercard" href="https://github.com/Mic92/nix-update/pull/68">#68</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/Mic92/nix-update/compare/0.19.3...1.0.0"><tt>0.19.3...1.0.0</tt></a></p></content>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
</author>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=60&v=4"/>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Repository/245145732/0.19.3</id>
|
||||
<updated>2023-08-06T19:28:44Z</updated>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/Mic92/nix-update/releases/tag/0.19.3"/>
|
||||
<title>0.19.3</title>
|
||||
<content type="html"><h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>fix escaping for non-toplevel attributes by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/figsoda/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/figsoda">@figsoda</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1838297699" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/182" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/182/hovercard" href="https://github.com/Mic92/nix-update/pull/182">#182</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/Mic92/nix-update/compare/0.19.2...0.19.3"><tt>0.19.2...0.19.3</tt></a></p></content>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
</author>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=60&v=4"/>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Repository/245145732/0.19.2</id>
|
||||
<updated>2023-08-02T21:03:43Z</updated>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/Mic92/nix-update/releases/tag/0.19.2"/>
|
||||
<title>0.19.2</title>
|
||||
<content type="html"><h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>fix attribute name escaping by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/figsoda/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/figsoda">@figsoda</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1833252113" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/180" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/180/hovercard" href="https://github.com/Mic92/nix-update/pull/180">#180</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/Mic92/nix-update/compare/0.19.1...0.19.2"><tt>0.19.1...0.19.2</tt></a></p></content>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
</author>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=60&v=4"/>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Repository/245145732/0.19.1</id>
|
||||
<updated>2023-08-02T05:44:10Z</updated>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/Mic92/nix-update/releases/tag/0.19.1"/>
|
||||
<title>0.19.1</title>
|
||||
<content type="html"><h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>escape attribute names by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/figsoda/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/figsoda">@figsoda</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1832143213" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/179" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/179/hovercard" href="https://github.com/Mic92/nix-update/pull/179">#179</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/Mic92/nix-update/compare/0.19.0...0.19.1"><tt>0.19.0...0.19.1</tt></a></p></content>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
</author>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=60&v=4"/>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Repository/245145732/0.19.0</id>
|
||||
<updated>2023-07-12T20:30:28Z</updated>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/Mic92/nix-update/releases/tag/0.19.0"/>
|
||||
<title>0.19.0</title>
|
||||
<content type="html"><h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>also respect cargoRoot when updating checksum by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Mic92/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Mic92">@Mic92</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1760004756" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/172" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/172/hovercard" href="https://github.com/Mic92/nix-update/pull/172">#172</a></li>
|
||||
<li>support new goModules attr by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Artturin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Artturin">@Artturin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1799569871" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/176" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/176/hovercard" href="https://github.com/Mic92/nix-update/pull/176">#176</a></li>
|
||||
</ul>
|
||||
<h2>New Contributors</h2>
|
||||
<ul>
|
||||
<li><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Artturin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Artturin">@Artturin</a> made their first contribution in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1799569871" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/176" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/176/hovercard" href="https://github.com/Mic92/nix-update/pull/176">#176</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/Mic92/nix-update/compare/0.18.0...0.19.0"><tt>0.18.0...0.19.0</tt></a></p></content>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
</author>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=60&v=4"/>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Repository/245145732/0.18.0</id>
|
||||
<updated>2023-06-02T14:09:22Z</updated>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/Mic92/nix-update/releases/tag/0.18.0"/>
|
||||
<title>0.18.0</title>
|
||||
<content type="html"><h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>nix-update: use nom if in path by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Mic92/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Mic92">@Mic92</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1689088189" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/159" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/159/hovercard" href="https://github.com/Mic92/nix-update/pull/159">#159</a></li>
|
||||
<li>add diff support for <code>fetchCrate</code> by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/figsoda/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/figsoda">@figsoda</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1707934337" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/162" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/162/hovercard" href="https://github.com/Mic92/nix-update/pull/162">#162</a></li>
|
||||
<li>git-commit files directly without using staging area by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Mic92/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Mic92">@Mic92</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1736869979" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/171" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/171/hovercard" href="https://github.com/Mic92/nix-update/pull/171">#171</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/Mic92/nix-update/compare/0.17.2...0.18.0"><tt>0.17.2...0.18.0</tt></a></p></content>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
</author>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=60&v=4"/>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Repository/245145732/0.17.2</id>
|
||||
<updated>2023-04-28T08:19:05Z</updated>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/Mic92/nix-update/releases/tag/0.17.2"/>
|
||||
<title>0.17.2</title>
|
||||
<content type="html"><h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>improve version assertions in tests by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/figsoda/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/figsoda">@figsoda</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1686027633" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/158" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/158/hovercard" href="https://github.com/Mic92/nix-update/pull/158">#158</a></li>
|
||||
<li>fix updating cargoLock with flakes by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/figsoda/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/figsoda">@figsoda</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1685992879" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/157" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/157/hovercard" href="https://github.com/Mic92/nix-update/pull/157">#157</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/Mic92/nix-update/compare/0.17.1...0.17.2"><tt>0.17.1...0.17.2</tt></a></p></content>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
</author>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=60&v=4"/>
|
||||
</entry>
|
||||
<entry>
|
||||
<id>tag:github.com,2008:Repository/245145732/0.17.1</id>
|
||||
<updated>2023-04-22T18:12:07Z</updated>
|
||||
<link rel="alternate" type="text/html" href="https://github.com/Mic92/nix-update/releases/tag/0.17.1"/>
|
||||
<title>0.17.1</title>
|
||||
<content type="html"><h2>What's Changed</h2>
|
||||
<ul>
|
||||
<li>improve assertion message by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/figsoda/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/figsoda">@figsoda</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1677136781" data-permission-text="Title is private" data-url="https://github.com/Mic92/nix-update/issues/155" data-hovercard-type="pull_request" data-hovercard-url="/Mic92/nix-update/pull/155/hovercard" href="https://github.com/Mic92/nix-update/pull/155">#155</a></li>
|
||||
</ul>
|
||||
<p><strong>Full Changelog</strong>: <a class="commit-link" href="https://github.com/Mic92/nix-update/compare/0.17.0...0.17.1"><tt>0.17.0...0.17.1</tt></a></p></content>
|
||||
<author>
|
||||
<name>Mic92</name>
|
||||
</author>
|
||||
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/96200?s=60&v=4"/>
|
||||
</entry>
|
||||
</feed>
|
@ -10,7 +10,7 @@ let
|
||||
# commit.
|
||||
version =
|
||||
if (isSnapshot)
|
||||
then "unstable-2022-10-01"
|
||||
then "0.16-unstable-2022-10-01"
|
||||
else "1.0";
|
||||
rev =
|
||||
if (isSnapshot)
|
||||
|
Loading…
Reference in New Issue
Block a user