fix: broken tests (mostly out of stuff being outdated) (#468)

6e9312b · Paulo F. Oliveira · 2026-06-28 14:53

9 files +972 -141
Message
{commit_body(@commit)}

Files changed

modified .github/workflows/action.yml
+0 −1
@@ -92,7 +92,6 @@ jobs:
92 92 strategy:
93 93 matrix:
94 94 os:
95 - windows-11-arm # ARM64
96 95 - windows-latest # x86_64
97 96 runs-on: ${{ matrix.os }}
98 97 steps:
modified .github/workflows/macos.yml
+19 −11
@@ -16,6 +16,7 @@ on:
16 16 jobs:
17 17 integration_test:
18 18 name: >
19 + OS ${{matrix.combo.os}},
19 20 OTP ${{matrix.combo.otp-version}},
20 21 Elixir ${{matrix.combo.elixir-version}},
21 22 rebar3 ${{matrix.combo.rebar3-version}}
@@ -24,6 +25,22 @@ jobs:
24 25 fail-fast: false
25 26 matrix:
26 27 combo:
28 + # macOS 14 - per README
29 + - otp-version: '25'
30 + os: 'macos-14'
31 + - otp-version: '29'
32 + os: 'macos-14'
33 + # macOS 15 - per README
34 + - otp-version: '25'
35 + os: 'macos-15'
36 + - otp-version: '29'
37 + os: 'macos-15'
38 + # macOS 26 - per README
39 + - otp-version: '25'
40 + os: 'macos-26'
41 + - otp-version: '29'
42 + os: 'macos-26'
43 + # macOS latest
27 44 - otp-version: '27'
28 45 elixir-version: 'v1.17.0'
29 46 rebar3-version: '3.23'
@@ -43,22 +60,13 @@ jobs:
43 60 elixir-version: '1.14.3'
44 61 os: 'macos-latest'
45 62 version-type: 'strict'
46 - otp-version: '25'
47 os: 'macos-15'
48 - otp-version: '27'
49 elixir-version: '1.18'
50 os: 'macos-26'
51 - otp-version: '26'
52 elixir-version: '1.16'
53 rebar3-version: '3.25'
54 os: 'macos-14'
55 63 - otp-version: '25.0'
56 elixir-version: 'v1.13.4-otp-25'
64 + elixir-version: 'v1.16.3-otp-25'
57 65 rebar3-version: '3.18.0'
58 66 os: 'macos-latest'
59 67 version-type: 'strict'
60 68 - otp-version: '25.0'
61 elixir-version: 'v1.13.4'
69 + elixir-version: 'v1.16.3'
62 70 rebar3-version: '3.18.0'
63 71 os: 'macos-latest'
64 72 version-type: 'strict'
modified .github/workflows/ubuntu.yml
+17 −15
@@ -16,6 +16,7 @@ on:
16 16 jobs:
17 17 integration_test:
18 18 name: >
19 + OS ${{matrix.combo.os}},
19 20 OTP ${{matrix.combo.otp-version}},
20 21 Elixir ${{matrix.combo.elixir-version}},
21 22 Gleam ${{matrix.combo.gleam-version}},
@@ -25,15 +26,22 @@ jobs:
25 26 fail-fast: false
26 27 matrix:
27 28 combo:
28 - otp-version: '<26'
29 elixir-version: '<1.17'
29 + # Ubuntu 22.04 - per README
30 + - otp-version: '24.2'
30 31 os: 'ubuntu-22.04'
31 - otp-version: 'master'
32 elixir-version: '> 0'
32 + - otp-version: '29'
33 + os: 'ubuntu-22.04'
34 + # Ubuntu 24.04 - per README
35 + - otp-version: '24.3'
33 36 os: 'ubuntu-24.04'
34 - otp-version: 'master'
35 elixir-version: 'main'
37 + - otp-version: '29'
36 38 os: 'ubuntu-24.04'
39 + # Ubuntu 26.04 - per README
40 + - otp-version: '26'
41 + os: 'ubuntu-26.04'
42 + - otp-version: '29'
43 + os: 'ubuntu-26.04'
44 + # Ubuntu latest
37 45 - otp-version: '27'
38 46 elixir-version: 'v1.17.0'
39 47 rebar3-version: '3.23'
@@ -53,19 +61,13 @@ jobs:
53 61 elixir-version: '1.14.3'
54 62 os: 'ubuntu-latest'
55 63 version-type: 'strict'
56 - otp-version: '25'
57 os: 'ubuntu-24.04'
58 - otp-version: '26'
59 elixir-version: '1.16'
60 rebar3-version: '3.25'
61 os: 'ubuntu-22.04'
62 64 - otp-version: '25.0'
63 elixir-version: 'v1.13.4-otp-25'
65 + elixir-version: 'v1.16.2-otp-25'
64 66 rebar3-version: '3.18.0'
65 67 os: 'ubuntu-latest'
66 68 version-type: 'strict'
67 69 - otp-version: '25.0'
68 elixir-version: 'v1.13.4'
70 + elixir-version: 'v1.16.3'
69 71 rebar3-version: '3.18.0'
70 72 os: 'ubuntu-latest'
71 73 version-type: 'strict'
@@ -80,7 +82,7 @@ jobs:
80 82 otp-version: false
81 83 os: 'ubuntu-latest'
82 84 disable_problem_matchers: true
83 - elixir-version: 'v1.13'
85 + - elixir-version: 'v1.16'
84 86 otp-version: '24'
85 87 escript_packages: 'hex protobuf'
86 88 escript_script: 'protoc-gen-elixir --version'
modified .github/workflows/windows.yml
+15 −12
@@ -16,6 +16,7 @@ on:
16 16 jobs:
17 17 integration_test:
18 18 name: >
19 + OS ${{matrix.combo.os}},
19 20 OTP ${{matrix.combo.otp-version}},
20 21 Elixir ${{matrix.combo.elixir-version}},
21 22 Gleam ${{matrix.combo.gleam-version}},
@@ -25,12 +26,20 @@ jobs:
25 26 fail-fast: false
26 27 matrix:
27 28 combo:
29 + # Windows 2022 - per README
30 + - otp-version: '26' # 21 is "so old", at this moment, we can't find it in latest 100
31 + os: 'windows-2022'
32 + - otp-version: '29'
33 + os: 'windows-2022'
34 + # Windows 2025 - per README
35 + - otp-version: '26' # 21 is "so old", at this moment, we can't find it in latest 100
36 + os: 'windows-2025'
37 + - otp-version: '29'
38 + os: 'windows-2025'
39 + # Windows latest
28 40 - otp-version: '<26'
29 41 elixir-version: '<1.17'
30 os: 'ubuntu-22.04'
31 - otp-version: 'master'
32 elixir-version: '> 0'
33 os: 'ubuntu-24.04'
42 + os: 'windows-latest'
34 43 - otp-version: '27'
35 44 elixir-version: 'v1.17.0'
36 45 rebar3-version: '3.23'
@@ -47,24 +56,18 @@ jobs:
47 56 elixir-version: '1.14.5'
48 57 os: 'windows-latest'
49 58 version-type: 'strict'
50 - otp-version: '24.0.2'
51 rebar3-version: '3.16'
52 os: 'windows-2022'
53 - otp-version: '23.0'
54 rebar3-version: '3.15'
55 os: 'windows-2022'
56 59 - elixir-version: 'v1.10'
57 60 otp-version: '23'
58 61 rebar3-version: '3.14'
59 62 os: 'windows-latest'
60 - elixir-version: 'v1.13'
63 + - elixir-version: 'v1.16'
61 64 otp-version: '24'
62 65 rebar3-version: '3.15'
63 66 os: 'windows-latest'
64 67 - gleam-version: '1.9.0'
65 68 otp-version: '27'
66 69 os: 'windows-latest'
67 - elixir-version: 'v1.13'
70 + - elixir-version: 'v1.16'
68 71 otp-version: '24'
69 72 escript_packages: 'hex protobuf'
70 73 escript_script: 'protoc-gen-elixir --version'
modified README.md
+15 −13
@@ -78,17 +78,16 @@ expect to be considered the latest.
78 78 This list presents the known working version combos between the target operating system
79 79 and Erlang/OTP.
80 80
81 | Operating system | Erlang/OTP | OTP Architecture | Status
82 |- |- | - |-
83 | `ubuntu-22.04` | 24.2 - 28 | x86_64, arm64 | ✅
84 | `ubuntu-24.04` | 24.3 - 28 | x86_64, arm64 | ✅
85 | `windows-2019` | 21\* - 25 | x86_64, x86 | ✅
86 | `windows-2022` | 21\* - 28 | x86_64, x86 | ✅
87 | `windows-2025` | 21\* - 28 | x86_64, x86 | ✅
88 | `macOS-13` | 25.0 - 28 | x86_64, arm64 | ✅
89 | `macOS-14` | 25.0 - 28 | x86_64, arm64 | ✅
90 | `macOS-15` | 25.0 - 28 | x86_64, arm64 | ✅
91 | `macOS-26` | 25.0 - 28 | x86_64, arm64 | ✅
81 +| Operating system | Erlang/OTP | OTP Architecture | Status
82 +|- |- | - |-
83 +| `ubuntu-22.04` | 24.2 - 29 | x86_64, arm64 | ✅
84 +| `ubuntu-24.04` | 24.3 - 29 | x86_64, arm64 | ✅
85 +| `ubuntu-26.04` | 26 - 29 | x86_64, arm64 | ✅
86 +| `windows-2022` | 21\* - 29 | x86_64, x86 | ✅
87 +| `windows-2025` | 21\* - 29 | x86_64, x86 | ✅
88 +| `macOS-14` | 25 - 29 | x86_64, arm64 | ✅
89 +| `macOS-15` | 25 - 29 | x86_64, arm64 | ✅
90 +| `macOS-26` | 25 - 29 | x86_64, arm64 | ✅
92 91
93 92 **Note** \*: prior to 23, Windows builds are only available for minor versions, e.g. 21.0, 21.3,
94 93 22.0, etc.
@@ -106,11 +105,14 @@ uses that to download assets:
106 105 | ImageOS | Operating system
107 106 |- |-
108 107 | `ubuntu22` | `ubuntu-22.04`
108 +| `ubuntu22-arm64` | `ubuntu-22.04`
109 109 | `ubuntu24` | `ubuntu-24.04`
110 | `win19` | `windows-2019`
110 +| `ubuntu24-arm64` | `ubuntu-24.04`
111 +| `ubuntu26` | `ubuntu-26.04`
112 +| `ubuntu26-arm64` | `ubuntu-26.04`
111 113 | `win22` | `windows-2022`
112 114 | `win25` | `windows-2025`
113 | `macos13` | `macOS-13`
115 +| `win25-vs2026` | `windows-2025`
114 116 | `macos14` | `macOS-14`
115 117 | `macos15` | `macOS-15`
116 118 | `macos26` | `macOS-26`
modified dist/index.js
+13 −3
@@ -54975,7 +54975,7 @@ async function getElixirVersion(exSpec0) {
54975 54975 if (!foundCombo) {
54976 54976 throw new Error(
54977 54977 `Requested Elixir / Erlang/OTP version (${exSpec0} / tried ${otpVersionsMajor}) not ` +
54978 'found in version list (did you check Compatibility between Elixir and Erlang/OTP?).' +
54978 + 'found in version list (did you check Compatibility between Elixir and Erlang/OTP?). ' +
54979 54979 'Elixir and Erlang/OTP compatibility can be found at: ' +
54980 54980 'https://hexdocs.pm/elixir/compatibility-and-deprecations.html',
54981 54981 )
@@ -55355,13 +55355,21 @@ function getRunnerOSArchitecture() {
55355 55355
55356 55356 function getRunnerOSVersion() {
55357 55357 // List from https://github.com/actions/runner-images?tab=readme-ov-file#available-images
55358 + // at e065a395d52f491c58eb8fba8ab1dde2c7cfada1
55359 + // Not considered, at the moment (though it might be easy to adapt to...):
55360 + // - ubuntu-slim
55361 + // - all macOS intel, large, and xlarge variants
55362 + // - all win arm variants
55358 55363 const ImageOSToContainer = {
55359 55364 ubuntu22: 'ubuntu-22.04',
55365 + 'ubuntu22-arm64': 'ubuntu-22.04',
55360 55366 ubuntu24: 'ubuntu-24.04',
55361 win19: 'windows-2019',
55367 + 'ubuntu24-arm64': 'ubuntu-24.04',
55368 + ubuntu26: 'ubuntu-26.04',
55369 + 'ubuntu26-arm64': 'ubuntu-26.04',
55362 55370 win22: 'windows-2022',
55363 55371 win25: 'windows-2025',
55364 macos13: 'macOS-13',
55372 + 'win25-vs2026': 'windows-2025',
55365 55373 macos14: 'macOS-14',
55366 55374 macos15: 'macOS-15',
55367 55375 macos26: 'macOS-26',
@@ -55369,6 +55377,8 @@ function getRunnerOSVersion() {
55369 55377 const deprecatedImageOSToContainer = {
55370 55378 ubuntu18: 'ubuntu-18.04',
55371 55379 ubuntu20: 'ubuntu-20.04',
55380 + win19: 'windows-2019',
55381 + macos13: 'macOS-13',
55372 55382 }
55373 55383 const containerFromEnvImageOS = ImageOSToContainer[process.env.ImageOS]
55374 55384 if (!containerFromEnvImageOS) {
modified src/setup-beam.js
+13 −3
@@ -280,7 +280,7 @@ async function getElixirVersion(exSpec0) {
280 280 if (!foundCombo) {
281 281 throw new Error(
282 282 `Requested Elixir / Erlang/OTP version (${exSpec0} / tried ${otpVersionsMajor}) not ` +
283 'found in version list (did you check Compatibility between Elixir and Erlang/OTP?).' +
283 + 'found in version list (did you check Compatibility between Elixir and Erlang/OTP?). ' +
284 284 'Elixir and Erlang/OTP compatibility can be found at: ' +
285 285 'https://hexdocs.pm/elixir/compatibility-and-deprecations.html',
286 286 )
@@ -661,13 +661,21 @@ function getRunnerOSArchitecture() {
661 661
662 662 function getRunnerOSVersion() {
663 663 // List from https://github.com/actions/runner-images?tab=readme-ov-file#available-images
664 + // at e065a395d52f491c58eb8fba8ab1dde2c7cfada1
665 + // Not considered, at the moment (though it might be easy to adapt to...):
666 + // - ubuntu-slim
667 + // - all macOS intel, large, and xlarge variants
668 + // - all win arm variants
664 669 const ImageOSToContainer = {
665 670 ubuntu22: 'ubuntu-22.04',
671 + 'ubuntu22-arm64': 'ubuntu-22.04',
666 672 ubuntu24: 'ubuntu-24.04',
667 win19: 'windows-2019',
673 + 'ubuntu24-arm64': 'ubuntu-24.04',
674 + ubuntu26: 'ubuntu-26.04',
675 + 'ubuntu26-arm64': 'ubuntu-26.04',
668 676 win22: 'windows-2022',
669 677 win25: 'windows-2025',
670 macos13: 'macOS-13',
678 + 'win25-vs2026': 'windows-2025',
671 679 macos14: 'macOS-14',
672 680 macos15: 'macOS-15',
673 681 macos26: 'macOS-26',
@@ -675,6 +683,8 @@ function getRunnerOSVersion() {
675 683 const deprecatedImageOSToContainer = {
676 684 ubuntu18: 'ubuntu-18.04',
677 685 ubuntu20: 'ubuntu-20.04',
686 + win19: 'windows-2019',
687 + macos13: 'macOS-13',
678 688 }
679 689 const containerFromEnvImageOS = ImageOSToContainer[process.env.ImageOS]
680 690 if (!containerFromEnvImageOS) {
modified test/rebar3/releases.json
+869 −72
@@ -1,4 +1,459 @@
1 1 [
2 + {
3 + "url": "https://api.github.com/repos/erlang/rebar3/releases/291454080",
4 + "assets_url": "https://api.github.com/repos/erlang/rebar3/releases/291454080/assets",
5 + "upload_url": "https://uploads.github.com/repos/erlang/rebar3/releases/291454080/assets{?name,label}",
6 + "html_url": "https://github.com/erlang/rebar3/releases/tag/3.27.0",
7 + "id": 291454080,
8 + "author": {
9 + "login": "github-actions[bot]",
10 + "id": 41898282,
11 + "node_id": "MDM6Qm90NDE4OTgyODI=",
12 + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
13 + "gravatar_id": "",
14 + "url": "https://api.github.com/users/github-actions%5Bbot%5D",
15 + "html_url": "https://github.com/apps/github-actions",
16 + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
17 + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
18 + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
19 + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
20 + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
21 + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
22 + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
23 + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
24 + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
25 + "type": "Bot",
26 + "user_view_type": "public",
27 + "site_admin": false
28 + },
29 + "node_id": "RE_kwDOAZYJ0s4RXzyA",
30 + "tag_name": "3.27.0",
31 + "target_commitish": "619df55d9dab109cbd1b5d9ed1d45c93f5450e24",
32 + "name": "3.27.0",
33 + "draft": false,
34 + "immutable": false,
35 + "prerelease": false,
36 + "created_at": "2026-02-27T17:38:58Z",
37 + "updated_at": "2026-02-27T17:49:55Z",
38 + "published_at": "2026-02-27T17:45:48Z",
39 + "assets": [
40 + {
41 + "url": "https://api.github.com/repos/erlang/rebar3/releases/assets/363630699",
42 + "id": 363630699,
43 + "node_id": "RA_kwDOAZYJ0s4VrJBr",
44 + "name": "rebar3",
45 + "label": "",
46 + "uploader": {
47 + "login": "github-actions[bot]",
48 + "id": 41898282,
49 + "node_id": "MDM6Qm90NDE4OTgyODI=",
50 + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
51 + "gravatar_id": "",
52 + "url": "https://api.github.com/users/github-actions%5Bbot%5D",
53 + "html_url": "https://github.com/apps/github-actions",
54 + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
55 + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
56 + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
57 + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
58 + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
59 + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
60 + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
61 + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
62 + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
63 + "type": "Bot",
64 + "user_view_type": "public",
65 + "site_admin": false
66 + },
67 + "content_type": "application/octet-stream",
68 + "state": "uploaded",
69 + "size": 854230,
70 + "digest": "sha256:af85aab41f9fd74bdd6341ebdf6fe9c88077aab9f8eac82371583fa02f2b0bdf",
71 + "download_count": 185468,
72 + "created_at": "2026-02-27T17:45:48Z",
73 + "updated_at": "2026-02-27T17:45:49Z",
74 + "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.27.0/rebar3"
75 + }
76 + ],
77 + "tarball_url": "https://api.github.com/repos/erlang/rebar3/tarball/3.27.0",
78 + "zipball_url": "https://api.github.com/repos/erlang/rebar3/zipball/3.27.0",
79 + "body": "- [Vendor hex_core 0.12.2](https://github.com/erlang/rebar3/pull/2997)\r\n- [prepare for OTP-29 by defaulting to warn_deprecated_catch](https://github.com/erlang/rebar3/pull/2983)\r\n- [fix bogus timestamps when creating escripts](https://github.com/erlang/rebar3/pull/2993)\r\n- [Add precision flag (and config) to control output percentage precision](https://github.com/erlang/rebar3/pull/2991)\r\n- [Add middlebox_comp_mode to global options](https://github.com/erlang/rebar3/pull/2989)\r\n- [Ignore optional Hex package dependencies](https://github.com/erlang/rebar3/pull/2982)",
80 + "reactions": {
81 + "url": "https://api.github.com/repos/erlang/rebar3/releases/291454080/reactions",
82 + "total_count": 4,
83 + "+1": 2,
84 + "-1": 0,
85 + "laugh": 0,
86 + "hooray": 2,
87 + "confused": 0,
88 + "heart": 0,
89 + "rocket": 0,
90 + "eyes": 0
91 + }
92 + },
93 + {
94 + "url": "https://api.github.com/repos/erlang/rebar3/releases/275001145",
95 + "assets_url": "https://api.github.com/repos/erlang/rebar3/releases/275001145/assets",
96 + "upload_url": "https://uploads.github.com/repos/erlang/rebar3/releases/275001145/assets{?name,label}",
97 + "html_url": "https://github.com/erlang/rebar3/releases/tag/3.26.0",
98 + "id": 275001145,
99 + "author": {
100 + "login": "github-actions[bot]",
101 + "id": 41898282,
102 + "node_id": "MDM6Qm90NDE4OTgyODI=",
103 + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
104 + "gravatar_id": "",
105 + "url": "https://api.github.com/users/github-actions%5Bbot%5D",
106 + "html_url": "https://github.com/apps/github-actions",
107 + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
108 + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
109 + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
110 + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
111 + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
112 + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
113 + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
114 + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
115 + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
116 + "type": "Bot",
117 + "user_view_type": "public",
118 + "site_admin": false
119 + },
120 + "node_id": "RE_kwDOAZYJ0s4QZC85",
121 + "tag_name": "3.26.0",
122 + "target_commitish": "f2b8b08862e00db4b0306852c9a0291dd7e69650",
123 + "name": "3.26.0",
124 + "draft": false,
125 + "immutable": false,
126 + "prerelease": false,
127 + "created_at": "2026-01-08T00:29:22Z",
128 + "updated_at": "2026-01-08T00:37:53Z",
129 + "published_at": "2026-01-08T00:36:14Z",
130 + "assets": [
131 + {
132 + "url": "https://api.github.com/repos/erlang/rebar3/releases/assets/337644584",
133 + "id": 337644584,
134 + "node_id": "RA_kwDOAZYJ0s4UIAwo",
135 + "name": "rebar3",
136 + "label": "",
137 + "uploader": {
138 + "login": "github-actions[bot]",
139 + "id": 41898282,
140 + "node_id": "MDM6Qm90NDE4OTgyODI=",
141 + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
142 + "gravatar_id": "",
143 + "url": "https://api.github.com/users/github-actions%5Bbot%5D",
144 + "html_url": "https://github.com/apps/github-actions",
145 + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
146 + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
147 + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
148 + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
149 + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
150 + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
151 + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
152 + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
153 + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
154 + "type": "Bot",
155 + "user_view_type": "public",
156 + "site_admin": false
157 + },
158 + "content_type": "application/octet-stream",
159 + "state": "uploaded",
160 + "size": 844296,
161 + "digest": "sha256:cd9bfe244c5919292d234ca35acb51d2ca75dce89ef6d9e49f5e3b7f70009782",
162 + "download_count": 51618,
163 + "created_at": "2026-01-08T00:36:14Z",
164 + "updated_at": "2026-01-08T00:36:15Z",
165 + "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.26.0/rebar3"
166 + }
167 + ],
168 + "tarball_url": "https://api.github.com/repos/erlang/rebar3/tarball/3.26.0",
169 + "zipball_url": "https://api.github.com/repos/erlang/rebar3/zipball/3.26.0",
170 + "body": "- [fix rebar_app_info:source/1 spec](https://github.com/erlang/rebar3/pull/2980)\r\n- [fix the version range parser to support and/or version constraints](https://github.com/erlang/rebar3/pull/2974)\r\n- [IPv6 support for getting Hex packages](https://github.com/erlang/rebar3/pull/2978)\r\n- [CT: disable cth_readable_failonly hook when verbose option is set](https://github.com/erlang/rebar3/pull/2975)\r\n- [relx: do not discard command line parameters when parameter is not in config](https://github.com/erlang/rebar3/pull/2968)\r\n- [Support env variable substitution with defaults in rebar shell](https://github.com/erlang/rebar3/pull/2948)\r\n- [Improve documentation](https://github.com/erlang/rebar3/pull/2972)\r\n- [Return manifest macros as objects](https://github.com/erlang/rebar3/pull/2962)\r\n- [Expand extra src dirs recursively in manifests](https://github.com/erlang/rebar3/pull/2963)\r\n- [Make xref recognize apps again](https://github.com/erlang/rebar3/pull/2965)",
171 + "reactions": {
172 + "url": "https://api.github.com/repos/erlang/rebar3/releases/275001145/reactions",
173 + "total_count": 3,
174 + "+1": 3,
175 + "-1": 0,
176 + "laugh": 0,
177 + "hooray": 0,
178 + "confused": 0,
179 + "heart": 0,
180 + "rocket": 0,
181 + "eyes": 0
182 + }
183 + },
184 + {
185 + "url": "https://api.github.com/repos/erlang/rebar3/releases/235157413",
186 + "assets_url": "https://api.github.com/repos/erlang/rebar3/releases/235157413/assets",
187 + "upload_url": "https://uploads.github.com/repos/erlang/rebar3/releases/235157413/assets{?name,label}",
188 + "html_url": "https://github.com/erlang/rebar3/releases/tag/3.25.1",
189 + "id": 235157413,
190 + "author": {
191 + "login": "github-actions[bot]",
192 + "id": 41898282,
193 + "node_id": "MDM6Qm90NDE4OTgyODI=",
194 + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
195 + "gravatar_id": "",
196 + "url": "https://api.github.com/users/github-actions%5Bbot%5D",
197 + "html_url": "https://github.com/apps/github-actions",
198 + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
199 + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
200 + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
201 + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
202 + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
203 + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
204 + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
205 + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
206 + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
207 + "type": "Bot",
208 + "user_view_type": "public",
209 + "site_admin": false
210 + },
211 + "node_id": "RE_kwDOAZYJ0s4OBDel",
212 + "tag_name": "3.25.1",
213 + "target_commitish": "249ec459dfa3f4c71dab38c4c633b16de5b82a27",
214 + "name": "3.25.1",
215 + "draft": false,
216 + "immutable": false,
217 + "prerelease": false,
218 + "created_at": "2025-07-25T12:19:56Z",
219 + "updated_at": "2025-07-25T12:29:57Z",
220 + "published_at": "2025-07-25T12:27:00Z",
221 + "assets": [
222 + {
223 + "url": "https://api.github.com/repos/erlang/rebar3/releases/assets/276288463",
224 + "id": 276288463,
225 + "node_id": "RA_kwDOAZYJ0s4Qd9PP",
226 + "name": "rebar3",
227 + "label": "",
228 + "uploader": {
229 + "login": "github-actions[bot]",
230 + "id": 41898282,
231 + "node_id": "MDM6Qm90NDE4OTgyODI=",
232 + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
233 + "gravatar_id": "",
234 + "url": "https://api.github.com/users/github-actions%5Bbot%5D",
235 + "html_url": "https://github.com/apps/github-actions",
236 + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
237 + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
238 + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
239 + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
240 + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
241 + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
242 + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
243 + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
244 + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
245 + "type": "Bot",
246 + "user_view_type": "public",
247 + "site_admin": false
248 + },
249 + "content_type": "application/octet-stream",
250 + "state": "uploaded",
251 + "size": 842339,
252 + "digest": "sha256:924576737f0d3098e1fa4691e6f542bf61036d234c61ebdc18aafef8e2bccf67",
253 + "download_count": 289165,
254 + "created_at": "2025-07-25T12:27:00Z",
255 + "updated_at": "2025-07-25T12:27:01Z",
256 + "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.25.1/rebar3"
257 + }
258 + ],
259 + "tarball_url": "https://api.github.com/repos/erlang/rebar3/tarball/3.25.1",
260 + "zipball_url": "https://api.github.com/repos/erlang/rebar3/zipball/3.25.1",
261 + "body": "Two fixes for Windows:\r\n- [Update escriptize hook to work with newer Windows versions](https://github.com/erlang/rebar3/pull/2964)\r\n - The regex used to match hooks for Rebar3's own escript location relied on the `win32` part of the architecture description line. Newer Windows versions now return a `windows` pattern instead\r\n- [Bump erlware_commons to 1.8.0](https://github.com/erlang/rebar3/pull/2957) (fixes hanging resource fetches on Windows on OTP-28)\r\n\r\n\r\nThere are also a couple of minor improvements:\r\n\r\n- [Add file completion support for bash completion](https://github.com/erlang/rebar3/pull/2961), fixing autocompletion of common command arguments that are file names\r\n- [Support resources of arbitrary size in rebar3](https://github.com/erlang/rebar3/pull/2956), allowing fancier custom dependency plugins",
262 + "reactions": {
263 + "url": "https://api.github.com/repos/erlang/rebar3/releases/235157413/reactions",
264 + "total_count": 1,
265 + "+1": 1,
266 + "-1": 0,
267 + "laugh": 0,
268 + "hooray": 0,
269 + "confused": 0,
270 + "heart": 0,
271 + "rocket": 0,
272 + "eyes": 0
273 + }
274 + },
275 + {
276 + "url": "https://api.github.com/repos/erlang/rebar3/releases/220703232",
277 + "assets_url": "https://api.github.com/repos/erlang/rebar3/releases/220703232/assets",
278 + "upload_url": "https://uploads.github.com/repos/erlang/rebar3/releases/220703232/assets{?name,label}",
279 + "html_url": "https://github.com/erlang/rebar3/releases/tag/3.25.0",
280 + "id": 220703232,
281 + "author": {
282 + "login": "github-actions[bot]",
283 + "id": 41898282,
284 + "node_id": "MDM6Qm90NDE4OTgyODI=",
285 + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
286 + "gravatar_id": "",
287 + "url": "https://api.github.com/users/github-actions%5Bbot%5D",
288 + "html_url": "https://github.com/apps/github-actions",
289 + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
290 + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
291 + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
292 + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
293 + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
294 + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
295 + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
296 + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
297 + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
298 + "type": "Bot",
299 + "user_view_type": "public",
300 + "site_admin": false
301 + },
302 + "node_id": "RE_kwDOAZYJ0s4NJ6oA",
303 + "tag_name": "3.25.0",
304 + "target_commitish": "6243d3fb017c9759ba699850e8a6b57700fbfabd",
305 + "name": "3.25.0",
306 + "draft": false,
307 + "immutable": false,
308 + "prerelease": false,
309 + "created_at": "2025-05-23T17:22:43Z",
310 + "updated_at": "2025-05-23T18:05:51Z",
311 + "published_at": "2025-05-23T17:30:17Z",
312 + "assets": [
313 + {
314 + "url": "https://api.github.com/repos/erlang/rebar3/releases/assets/257513121",
315 + "id": 257513121,
316 + "node_id": "RA_kwDOAZYJ0s4PWVah",
317 + "name": "rebar3",
318 + "label": "",
319 + "uploader": {
320 + "login": "github-actions[bot]",
321 + "id": 41898282,
322 + "node_id": "MDM6Qm90NDE4OTgyODI=",
323 + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
324 + "gravatar_id": "",
325 + "url": "https://api.github.com/users/github-actions%5Bbot%5D",
326 + "html_url": "https://github.com/apps/github-actions",
327 + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
328 + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
329 + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
330 + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
331 + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
332 + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
333 + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
334 + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
335 + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
336 + "type": "Bot",
337 + "user_view_type": "public",
338 + "site_admin": false
339 + },
340 + "content_type": "application/octet-stream",
341 + "state": "uploaded",
342 + "size": 842031,
343 + "digest": null,
344 + "download_count": 61206,
345 + "created_at": "2025-05-23T17:30:18Z",
346 + "updated_at": "2025-05-23T17:30:18Z",
347 + "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.25.0/rebar3"
348 + }
349 + ],
350 + "tarball_url": "https://api.github.com/repos/erlang/rebar3/tarball/3.25.0",
351 + "zipball_url": "https://api.github.com/repos/erlang/rebar3/zipball/3.25.0",
352 + "body": "OTP-28 compatibility release, deprecates OTP-25.\r\n\r\n- [Bump Runner images for Nightly and release builds](https://github.com/erlang/rebar3/pull/2953)\r\n- [Prepare OTP-28 bump](https://github.com/erlang/rebar3/pull/2952)\r\n- [Bump eunit_formatters to 0.6.0](https://github.com/erlang/rebar3/pull/2951)\r\n- [docs: added a link to the license](https://github.com/erlang/rebar3/pull/2946)\r\n- [docs: replaced the link to the build status badge](https://github.com/erlang/rebar3/pull/2945)\r\n- [Bump cth_readable version for OTP-28 readiness](https://github.com/erlang/rebar3/pull/2941)\r\n- [fix: crash on rebar_compiler_format:colorize/2](https://github.com/erlang/rebar3/pull/2939)\r\n- [OTP-28 readiness (part 1)](https://github.com/erlang/rebar3/pull/2937)\r\n- [add env var for skipping project plugins](https://github.com/erlang/rebar3/pull/2932)\r\n- [Fallback to the default error format when a file is empty](https://github.com/erlang/rebar3/pull/2931)\r\n- [update vendored cf to support color in foot and ghostty](https://github.com/erlang/rebar3/pull/2926)\r\n- [Approach the sample config. file to rebar3.org's documentation](https://github.com/erlang/rebar3/pull/2923)\r\n- [Add Rebar3 and Erlang/OTP compatibility list](https://github.com/erlang/rebar3/pull/2918)\r\n- [make escriptize reproducible with erlang 27.1](https://github.com/erlang/rebar3/pull/2916)\r\n- [Bump relx vendored copy](https://github.com/erlang/rebar3/pull/2912)",
353 + "reactions": {
354 + "url": "https://api.github.com/repos/erlang/rebar3/releases/220703232/reactions",
355 + "total_count": 6,
356 + "+1": 0,
357 + "-1": 0,
358 + "laugh": 0,
359 + "hooray": 0,
360 + "confused": 0,
361 + "heart": 6,
362 + "rocket": 0,
363 + "eyes": 0
364 + }
365 + },
366 + {
367 + "url": "https://api.github.com/repos/erlang/rebar3/releases/172548795",
368 + "assets_url": "https://api.github.com/repos/erlang/rebar3/releases/172548795/assets",
369 + "upload_url": "https://uploads.github.com/repos/erlang/rebar3/releases/172548795/assets{?name,label}",
370 + "html_url": "https://github.com/erlang/rebar3/releases/tag/3.24.0",
371 + "id": 172548795,
372 + "author": {
373 + "login": "github-actions[bot]",
374 + "id": 41898282,
375 + "node_id": "MDM6Qm90NDE4OTgyODI=",
376 + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
377 + "gravatar_id": "",
378 + "url": "https://api.github.com/users/github-actions%5Bbot%5D",
379 + "html_url": "https://github.com/apps/github-actions",
380 + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
381 + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
382 + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
383 + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
384 + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
385 + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
386 + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
387 + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
388 + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
389 + "type": "Bot",
390 + "user_view_type": "public",
391 + "site_admin": false
392 + },
393 + "node_id": "RE_kwDOAZYJ0s4KSOK7",
394 + "tag_name": "3.24.0",
395 + "target_commitish": "74c766d0d41117bc4b14987b8ada12aee5fe0b86",
396 + "name": "3.24.0",
397 + "draft": false,
398 + "immutable": false,
399 + "prerelease": false,
400 + "created_at": "2024-08-29T12:10:10Z",
401 + "updated_at": "2024-08-29T12:19:25Z",
402 + "published_at": "2024-08-29T12:18:26Z",
403 + "assets": [
404 + {
405 + "url": "https://api.github.com/repos/erlang/rebar3/releases/assets/189095797",
406 + "id": 189095797,
407 + "node_id": "RA_kwDOAZYJ0s4LRV91",
408 + "name": "rebar3",
409 + "label": "",
410 + "uploader": {
411 + "login": "github-actions[bot]",
412 + "id": 41898282,
413 + "node_id": "MDM6Qm90NDE4OTgyODI=",
414 + "avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
415 + "gravatar_id": "",
416 + "url": "https://api.github.com/users/github-actions%5Bbot%5D",
417 + "html_url": "https://github.com/apps/github-actions",
418 + "followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
419 + "following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
420 + "gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
421 + "starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
422 + "subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
423 + "organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
424 + "repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
425 + "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
426 + "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
427 + "type": "Bot",
428 + "user_view_type": "public",
429 + "site_admin": false
430 + },
431 + "content_type": "application/octet-stream",
432 + "state": "uploaded",
433 + "size": 839384,
434 + "digest": null,
435 + "download_count": 589846,
436 + "created_at": "2024-08-29T12:18:26Z",
437 + "updated_at": "2024-08-29T12:18:27Z",
438 + "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.24.0/rebar3"
439 + }
440 + ],
441 + "tarball_url": "https://api.github.com/repos/erlang/rebar3/tarball/3.24.0",
442 + "zipball_url": "https://api.github.com/repos/erlang/rebar3/zipball/3.24.0",
443 + "body": "New features:\r\n- [Turn rich compiler errors on by default](https://github.com/erlang/rebar3/pull/2881)\r\n- [Tweak experimental manifest plugin to return ELP-compatible information](https://github.com/erlang/rebar3/pull/2910)\r\n\r\nBug fixes:\r\n- [make escriptize reproducible by setting timestamps for files in zip to unix epoch](https://github.com/erlang/rebar3/pull/2900)\r\n- [Log path when plugin template file read fails](https://github.com/erlang/rebar3/pull/2899)\r\n- [Prevent infinite compiler DAG growth](https://github.com/erlang/rebar3/pull/2892)\r\n- [Port Relx compatibility fix for escript files in OTP-27](https://github.com/erlang/rebar3/commit/26cd5271f260b8488348246b81172116680e6fbc)\r\n\r\nInternal maintenance:\r\n- [Made `rebar_utils:filtermap/2` to call directly `lists:filtermap/2`](https://github.com/erlang/rebar3/pull/2907)\r\n- [Cleaned up additional definitions in `bootstrap`](https://github.com/erlang/rebar3/pull/2905)\r\n- [Replaced rebar_utils:find_source/3 by a call to filelib:find_source/3](https://github.com/erlang/rebar3/pull/2904) and [Marked rebar_utils:find_source/3 as deprecated](https://github.com/erlang/rebar3/pull/2901)\r\n- [Fixing various typos in comments, types, and function names](https://github.com/erlang/rebar3/pull/2902)\r\n- [Bump hex_core and certifi dependencies](https://github.com/erlang/rebar3/pull/2898)\r\n- [Remove legacy hostname checks](https://github.com/erlang/rebar3/pull/2896)\r\n- [Replaced group_by_namespace/1 by a call to maps:groups_from_list/2](https://github.com/erlang/rebar3/pull/2895)\r\n- [Removed legacy OTP_RELEASE macro statements](https://github.com/erlang/rebar3/pull/2891)\r\n- [Removed legacy fun_stacktrace usage](https://github.com/erlang/rebar3/pull/2889)\r\n- [Removed unsused platform_define options](https://github.com/erlang/rebar3/pull/2888)\r\n- [Standardizing templates indentation](https://github.com/erlang/rebar3/pull/2884)\r\n\r\nRegarding rich compiler errors, the change is optional.\r\n\r\nGiven the module:\r\n\r\n -module(fake_mod).\r\n\r\n -export([diagnostic/1]).\r\n\r\n diagnostic(A) ->\r\n X = add(5 / 0),\r\n {X,X}.\r\n\r\n add(X) -> X.\r\n\r\n add(X, Y) -> X + Y.\r\n\r\nCalling rebar3 compile can now yield:\r\n\r\n```\r\n...\r\n===> Compiling apps/rebar/src/fake_mod.erl failed\r\n ┌─ apps/rebar/src/fake_mod.erl:\r\n\r\n 5 │ diagnostic(A) ->\r\n │ ╰── variable 'A' is unused\r\n\r\n ┌─ apps/rebar/src/fake_mod.erl:\r\n\r\n 6 │ X = add(5 / 0),\r\n │ ╰── evaluation of operator '/'/2 will fail with a 'badarith' exception\r\n\r\n ┌─ apps/rebar/src/fake_mod.erl:\r\n\r\n 11 │ add(X, Y) -> X + Y.\r\n │ ╰── function add/2 is unused\r\n```\r\nand in a terminal supporting color output:\r\n\r\n![](https://user-images.githubusercontent.com/111141/240263938-3648a64e-775e-4c6c-a11f-fa3b15ec942f.png)\r\n\r\nBy default, this format is turned on, but can be turned off optionally by configuring values with\r\n\r\n {compiler_error_format, minimal}.\r\n\r\nIf this breaks your tooling, you may want to put it in your global rebar3 config file.",
444 + "reactions": {
445 + "url": "https://api.github.com/repos/erlang/rebar3/releases/172548795/reactions",
446 + "total_count": 10,
447 + "+1": 0,
448 + "-1": 0,
449 + "laugh": 0,
450 + "hooray": 5,
451 + "confused": 0,
452 + "heart": 4,
453 + "rocket": 1,
454 + "eyes": 0
455 + }
456 + },
2 457 {
3 458 "url": "https://api.github.com/repos/erlang/rebar3/releases/150620430",
4 459 "assets_url": "https://api.github.com/repos/erlang/rebar3/releases/150620430/assets",
@@ -23,6 +478,7 @@
23 478 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
24 479 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
25 480 "type": "Bot",
481 + "user_view_type": "public",
26 482 "site_admin": false
27 483 },
28 484 "node_id": "RE_kwDOAZYJ0s4I-kkO",
@@ -30,8 +486,10 @@
30 486 "target_commitish": "bde4b54248d16280b2c70a244aca3bb7566e2033",
31 487 "name": "3.23.0",
32 488 "draft": false,
489 + "immutable": false,
33 490 "prerelease": false,
34 491 "created_at": "2024-04-10T16:56:48Z",
492 + "updated_at": "2024-04-10T17:13:12Z",
35 493 "published_at": "2024-04-10T17:03:13Z",
36 494 "assets": [
37 495 {
@@ -58,12 +516,14 @@
58 516 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
59 517 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
60 518 "type": "Bot",
519 + "user_view_type": "public",
61 520 "site_admin": false
62 521 },
63 522 "content_type": "application/octet-stream",
64 523 "state": "uploaded",
65 524 "size": 815571,
66 "download_count": 7086,
525 + "digest": null,
526 + "download_count": 296768,
67 527 "created_at": "2024-04-10T17:03:13Z",
68 528 "updated_at": "2024-04-10T17:03:14Z",
69 529 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.23.0/rebar3"
@@ -74,13 +534,13 @@
74 534 "body": "New Features:\r\n- [add a new shell completion provider](https://github.com/erlang/rebar3/pull/2858)\r\n- [`zsh` support for aliases in `completion`](https://github.com/erlang/rebar3/pull/2868)\r\n- [Add new 'shell_hooks_env' config to extend shell hooks' OS env vars](https://github.com/erlang/rebar3/pull/2830)\r\n- [Add (newer) Dialyzer info. about `invalid_contract`](https://github.com/erlang/rebar3/pull/2828)\r\n- [Add command `rebar3 alias`](https://github.com/erlang/rebar3/pull/2825)\r\n\r\nBug fixes:\r\n\r\n- [Bump relx and erlware commons versions](https://github.com/erlang/rebar3/pull/2874)\r\n- [REBAR_SRC_DIRS and REBAR_APP_DIRS fix by making `rebar_dir:src_dirs/1` options default to `[\"src\"]`](https://github.com/erlang/rebar3/pull/2872)\r\n- [Eliminate use of experimental function code:lib_dir/2](https://github.com/erlang/rebar3/pull/2866)\r\n- [Fix \"clean\" hooks in non-umbrella apps and when override are presents](https://github.com/erlang/rebar3/pull/2863)\r\n- [Initial version of the Manifest plugin](https://github.com/erlang/rebar3/pull/2859)\r\n- [Make log_level entry in rebar.app work again](https://github.com/erlang/rebar3/pull/2860)\r\n- [Append . to --eval arg if missing](https://github.com/erlang/rebar3/pull/2856)\r\n- [Handle 'or' in versions in a primitive manner](https://github.com/erlang/rebar3/pull/2840)\r\n- [Fall back to reading versions from hex metadata](https://github.com/erlang/rebar3/pull/2854)\r\n- [Dedupe compiler DAG edge insertion for artifacts](https://github.com/erlang/rebar3/pull/2850)\r\n- [Add missing doc. for `incremental` on Dialyzer analysis](https://github.com/erlang/rebar3/pull/2852)\r\n- [rebar_utils: add metadata to primary logger config](https://github.com/erlang/rebar3/pull/2848)\r\n- [Prevent XRef issue when analysis runs on generated code](https://github.com/erlang/rebar3/pull/2829)\r\n- [Fix unicode output printed as charlist](https://github.com/erlang/rebar3/pull/2831)\r\n- [Rework argument parsing in do/as providers](https://github.com/erlang/rebar3/pull/2813)\r\n- [Fix for `rebar3 shell` in Erlang 26 when ShellArgs==undefined](https://github.com/erlang/rebar3/pull/2819)\r\n- [Erlang 26 custom shell fix](https://github.com/erlang/rebar3/pull/2818)\r\n- [Add app name to \"OTP release ~ts or later is required\" msg](https://github.com/erlang/rebar3/pull/2810)",
75 535 "reactions": {
76 536 "url": "https://api.github.com/repos/erlang/rebar3/releases/150620430/reactions",
77 "total_count": 11,
537 + "total_count": 14,
78 538 "+1": 0,
79 539 "-1": 0,
80 540 "laugh": 0,
81 "hooray": 6,
541 + "hooray": 7,
82 542 "confused": 0,
83 "heart": 5,
543 + "heart": 7,
84 544 "rocket": 0,
85 545 "eyes": 0
86 546 }
@@ -109,6 +569,7 @@
109 569 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
110 570 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
111 571 "type": "Bot",
572 + "user_view_type": "public",
112 573 "site_admin": false
113 574 },
114 575 "node_id": "RE_kwDOAZYJ0s4G1Efq",
@@ -116,8 +577,10 @@
116 577 "target_commitish": "26400cd5082bf44bec66227164074677d3bd237c",
117 578 "name": "3.22.1",
118 579 "draft": false,
580 + "immutable": false,
119 581 "prerelease": false,
120 582 "created_at": "2023-07-31T23:07:31Z",
583 + "updated_at": "2023-07-31T23:18:44Z",
121 584 "published_at": "2023-07-31T23:17:24Z",
122 585 "assets": [
123 586 {
@@ -144,12 +607,14 @@
144 607 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
145 608 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
146 609 "type": "Bot",
610 + "user_view_type": "public",
147 611 "site_admin": false
148 612 },
149 613 "content_type": "application/octet-stream",
150 614 "state": "uploaded",
151 615 "size": 800027,
152 "download_count": 61621,
616 + "digest": null,
617 + "download_count": 182541,
153 618 "created_at": "2023-07-31T23:17:25Z",
154 619 "updated_at": "2023-07-31T23:17:25Z",
155 620 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.22.1/rebar3"
@@ -160,8 +625,8 @@
160 625 "body": "This is a small patch release for some bugfixes:\r\n\r\n- [Defer hostname check to OTP when supported](https://github.com/erlang/rebar3/pull/2805)\r\n- [Print diagnostic when failing to get VSN with Git](https://github.com/erlang/rebar3/pull/2804)\r\n- [Add simple Erlang LS config](https://github.com/erlang/rebar3/pull/2796)",
161 626 "reactions": {
162 627 "url": "https://api.github.com/repos/erlang/rebar3/releases/114575338/reactions",
163 "total_count": 4,
164 "+1": 1,
628 + "total_count": 3,
629 + "+1": 0,
165 630 "-1": 0,
166 631 "laugh": 0,
167 632 "hooray": 0,
@@ -195,6 +660,7 @@
195 660 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
196 661 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
197 662 "type": "Bot",
663 + "user_view_type": "public",
198 664 "site_admin": false
199 665 },
200 666 "node_id": "RE_kwDOAZYJ0s4GNcMA",
@@ -202,8 +668,10 @@
202 668 "target_commitish": "0a432f2f60cd32b8ff07d644a506dba15eb6f04a",
203 669 "name": "3.22.0",
204 670 "draft": false,
671 + "immutable": false,
205 672 "prerelease": false,
206 673 "created_at": "2023-05-24T23:05:56Z",
674 + "updated_at": "2023-05-25T03:36:59Z",
207 675 "published_at": "2023-05-24T23:15:20Z",
208 676 "assets": [
209 677 {
@@ -230,12 +698,14 @@
230 698 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
231 699 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
232 700 "type": "Bot",
701 + "user_view_type": "public",
233 702 "site_admin": false
234 703 },
235 704 "content_type": "application/octet-stream",
236 705 "state": "uploaded",
237 706 "size": 799994,
238 "download_count": 44823,
707 + "digest": null,
708 + "download_count": 128182,
239 709 "created_at": "2023-05-24T23:15:20Z",
240 710 "updated_at": "2023-05-24T23:15:21Z",
241 711 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.22.0/rebar3"
@@ -246,11 +716,11 @@
246 716 "body": "This release most importantly contains patches to fix blocking issues on Windows:\r\n\r\n- [Avoid setting a shell-encoding in OTP-26, which causes the `shell` command to hang on windows](https://github.com/erlang/rebar3/pull/2794)\r\n- [Support CRLF in shell ENV files](https://github.com/erlang/rebar3/pull/2793)\r\n\r\n---- \r\n\r\nThis release also contains an experimental and optional change that warrants a bit of explanation: [Support rich compiler messages in errors](https://github.com/erlang/rebar3/pull/2783) and [in warnings](https://github.com/erlang/rebar3/pull/2795)\r\n\r\nGiven the module:\r\n\r\n -module(fake_mod).\r\n\r\n -export([diagnostic/1]).\r\n\r\n diagnostic(A) ->\r\n X = add(5 / 0),\r\n {X,X}.\r\n\r\n add(X) -> X.\r\n\r\n add(X, Y) -> X + Y.\r\n\r\nCalling rebar3 compile can now yield:\r\n\r\n```\r\n...\r\n===> Compiling apps/rebar/src/fake_mod.erl failed\r\n ┌─ apps/rebar/src/fake_mod.erl:\r\n\r\n 5 │ diagnostic(A) ->\r\n │ ╰── variable 'A' is unused\r\n\r\n ┌─ apps/rebar/src/fake_mod.erl:\r\n\r\n 6 │ X = add(5 / 0),\r\n │ ╰── evaluation of operator '/'/2 will fail with a 'badarith' exception\r\n\r\n ┌─ apps/rebar/src/fake_mod.erl:\r\n\r\n 11 │ add(X, Y) -> X + Y.\r\n │ ╰── function add/2 is unused\r\n```\r\nand in a terminal supporting color output:\r\n\r\n![](https://user-images.githubusercontent.com/111141/240263938-3648a64e-775e-4c6c-a11f-fa3b15ec942f.png)\r\n\r\nBy default, this format is turned off, but can be turned on optionally by configuring values with\r\n\r\n {compiler_error_format, rich}.\r\n\r\nYou can get this enabled. You may want to put it in your global rebar3 config file. That being said, this may break some tooling that could parse rebar3-specific output. The default value is `{compiler_error_format, minimal}.` and putting that value back in should fix any breakage. We're also expecting color output to have a few bugs related to a rather naive heuristic used to delimit language constructs, but we wanted to make the feature available for feedback and this bug-fixing release was a decent opportunity.\r\n\r\nThis functionality relies on an expanded compiler API exposed by Rebar3, but since we're not yet quite sure what form we want it to take, we'll keep the new API undocumented in the short term.",
247 717 "reactions": {
248 718 "url": "https://api.github.com/repos/erlang/rebar3/releases/104186624/reactions",
249 "total_count": 13,
719 + "total_count": 12,
250 720 "+1": 0,
251 721 "-1": 0,
252 722 "laugh": 0,
253 "hooray": 13,
723 + "hooray": 12,
254 724 "confused": 0,
255 725 "heart": 0,
256 726 "rocket": 0,
@@ -281,6 +751,7 @@
281 751 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
282 752 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
283 753 "type": "Bot",
754 + "user_view_type": "public",
284 755 "site_admin": false
285 756 },
286 757 "node_id": "RE_kwDOAZYJ0s4GKbQl",
@@ -288,8 +759,10 @@
288 759 "target_commitish": "5dd033fd8b6f947f72701d61b2761f78f3f9311e",
289 760 "name": "3.21.0",
290 761 "draft": false,
762 + "immutable": false,
291 763 "prerelease": false,
292 764 "created_at": "2023-05-18T00:56:46Z",
765 + "updated_at": "2023-05-18T01:05:29Z",
293 766 "published_at": "2023-05-18T01:05:05Z",
294 767 "assets": [
295 768 {
@@ -316,12 +789,14 @@
316 789 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
317 790 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
318 791 "type": "Bot",
792 + "user_view_type": "public",
319 793 "site_admin": false
320 794 },
321 795 "content_type": "application/octet-stream",
322 796 "state": "uploaded",
323 797 "size": 797728,
324 "download_count": 1079,
798 + "digest": null,
799 + "download_count": 10152,
325 800 "created_at": "2023-05-18T01:05:05Z",
326 801 "updated_at": "2023-05-18T01:05:06Z",
327 802 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.21.0/rebar3"
@@ -367,6 +842,7 @@
367 842 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
368 843 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
369 844 "type": "Bot",
845 + "user_view_type": "public",
370 846 "site_admin": false
371 847 },
372 848 "node_id": "RE_kwDOAZYJ0s4ExIRv",
@@ -374,8 +850,10 @@
374 850 "target_commitish": "3f563feaf1091a1980241adefa83a32dd2eebf7c",
375 851 "name": "3.20.0",
376 852 "draft": false,
853 + "immutable": false,
377 854 "prerelease": false,
378 855 "created_at": "2022-10-15T12:48:56Z",
856 + "updated_at": "2022-10-15T13:00:51Z",
379 857 "published_at": "2022-10-15T12:57:36Z",
380 858 "assets": [
381 859 {
@@ -402,12 +880,14 @@
402 880 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
403 881 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
404 882 "type": "Bot",
883 + "user_view_type": "public",
405 884 "site_admin": false
406 885 },
407 886 "content_type": "application/octet-stream",
408 887 "state": "uploaded",
409 888 "size": 794893,
410 "download_count": 80636,
889 + "digest": null,
890 + "download_count": 137293,
411 891 "created_at": "2022-10-15T12:57:36Z",
412 892 "updated_at": "2022-10-15T12:57:37Z",
413 893 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.20.0/rebar3"
@@ -453,6 +933,7 @@
453 933 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
454 934 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
455 935 "type": "Bot",
936 + "user_view_type": "public",
456 937 "site_admin": false
457 938 },
458 939 "node_id": "RE_kwDOAZYJ0s4EKL0a",
@@ -460,8 +941,10 @@
460 941 "target_commitish": "cc1b22283656282d3518c176dd419eaa6cfce548",
461 942 "name": "3.19.0",
462 943 "draft": false,
944 + "immutable": false,
463 945 "prerelease": false,
464 946 "created_at": "2022-06-18T22:29:37Z",
947 + "updated_at": "2022-06-18T22:41:13Z",
465 948 "published_at": "2022-06-18T22:39:21Z",
466 949 "assets": [
467 950 {
@@ -488,12 +971,14 @@
488 971 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
489 972 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
490 973 "type": "Bot",
974 + "user_view_type": "public",
491 975 "site_admin": false
492 976 },
493 977 "content_type": "application/octet-stream",
494 978 "state": "uploaded",
495 979 "size": 959664,
496 "download_count": 55975,
980 + "digest": null,
981 + "download_count": 66685,
497 982 "created_at": "2022-06-18T22:39:21Z",
498 983 "updated_at": "2022-06-18T22:39:22Z",
499 984 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.19.0/rebar3"
@@ -539,6 +1024,7 @@
539 1024 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
540 1025 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
541 1026 "type": "Bot",
1027 + "user_view_type": "public",
542 1028 "site_admin": false
543 1029 },
544 1030 "node_id": "RE_kwDOAZYJ0s4DWqQY",
@@ -546,8 +1032,10 @@
546 1032 "target_commitish": "174fd9070195443d693d444ecd1f2b7aa91661fe",
547 1033 "name": "3.18.0",
548 1034 "draft": false,
1035 + "immutable": false,
549 1036 "prerelease": false,
550 1037 "created_at": "2022-01-02T12:56:31Z",
1038 + "updated_at": "2022-01-02T13:12:11Z",
551 1039 "published_at": "2022-01-02T13:03:16Z",
552 1040 "assets": [
553 1041 {
@@ -574,12 +1062,14 @@
574 1062 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
575 1063 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
576 1064 "type": "Bot",
1065 + "user_view_type": "public",
577 1066 "site_admin": false
578 1067 },
579 1068 "content_type": "application/octet-stream",
580 1069 "state": "uploaded",
581 1070 "size": 952478,
582 "download_count": 56261,
1071 + "digest": null,
1072 + "download_count": 118890,
583 1073 "created_at": "2022-01-02T13:03:16Z",
584 1074 "updated_at": "2022-01-02T13:03:18Z",
585 1075 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.18.0/rebar3"
@@ -613,6 +1103,7 @@
613 1103 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
614 1104 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
615 1105 "type": "Bot",
1106 + "user_view_type": "public",
616 1107 "site_admin": false
617 1108 },
618 1109 "node_id": "MDc6UmVsZWFzZTQ4OTMzMTE3",
@@ -620,8 +1111,10 @@
620 1111 "target_commitish": "e008a2ff40f708494a7c259a1fd8c2e77f7cd6a0",
621 1112 "name": "3.17.0",
622 1113 "draft": false,
1114 + "immutable": false,
623 1115 "prerelease": false,
624 1116 "created_at": "2021-09-03T01:20:37Z",
1117 + "updated_at": "2021-09-03T01:39:32Z",
625 1118 "published_at": "2021-09-03T01:27:05Z",
626 1119 "assets": [
627 1120 {
@@ -648,12 +1141,14 @@
648 1141 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
649 1142 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
650 1143 "type": "Bot",
1144 + "user_view_type": "public",
651 1145 "site_admin": false
652 1146 },
653 1147 "content_type": "application/octet-stream",
654 1148 "state": "uploaded",
655 1149 "size": 944741,
656 "download_count": 17146,
1150 + "digest": null,
1151 + "download_count": 24233,
657 1152 "created_at": "2021-09-03T01:27:06Z",
658 1153 "updated_at": "2021-09-03T01:27:06Z",
659 1154 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.17.0/rebar3"
@@ -664,11 +1159,11 @@
664 1159 "body": "This release is mostly bug fixes, and repairs prior broken builds of elixir dependencies, but also includes a couple of useful features.\r\n\r\nNew Features:\r\n- [Add escript_incl_priv so escriptize priv dir inclusion works with _checkouts and profiles](https://github.com/erlang/rebar3/pull/2602)\r\n- [Added SSL cacert patch to support Corporate MITM Proxies](https://github.com/erlang/rebar3/pull/2570)\r\n\r\nBug fixes:\r\n\r\n- [rebar3 release to honour the ignore-xref attribute](https://github.com/erlang/rebar3/pull/2613)\r\n- [Bump relx to 4.5.0](https://github.com/erlang/rebar3/pull/2612)\r\n - use copied erts dir when tar'ing even when the user sets the erts\r\n - improve error message when a symlink creation fails\r\n - State extended with a filter method to filter xref_warnings\r\n - Do not require logger\r\n - Add default time warp mode of multi\r\n - optionally allow static node name prefixes\r\n - use random:uniform instead of os:pid when constructing node name in nodetool\r\n - Fix eval command to use ERL_DIST_PORT, consistency with rpc command\r\n - Fix bin script arguments to erlexec\r\n- [Give compiler hints when handling run-time deps in parse_transforms](https://github.com/erlang/rebar3/pull/2606)\r\n- [Make `rebar_file_utils:system_tmpdir/1` take `TMPDIR` env var into account on *nix](https://github.com/erlang/rebar3/pull/2597)\r\n- [Handle abstract code starting with a non-file attribute](https://github.com/erlang/rebar3/pull/2595)\r\n- [Prefer erlang app to mix project](https://github.com/erlang/rebar3/pull/2588)\r\n- [Drop bootstrap URI handling functions warnings](https://github.com/erlang/rebar3/pull/2585)\r\n- [Prevent crashes on recursive src_dir definitions in deps](https://github.com/erlang/rebar3/pull/2582)\r\n- [Fix ssl check hostname options for wildcard certificate](https://github.com/erlang/rebar3/pull/2579)\r\n- [{xref_ignores} now properly works on module,](https://github.com/erlang/rebar3/pull/2497)\r\n- [Normalize Dialyzer PLT paths](https://github.com/erlang/rebar3/pull/2578)\r\n- [Fix optimistic registry update of plugins being upgraded](https://github.com/erlang/rebar3/pull/2568)",
665 1160 "reactions": {
666 1161 "url": "https://api.github.com/repos/erlang/rebar3/releases/48933117/reactions",
667 "total_count": 3,
1162 + "total_count": 4,
668 1163 "+1": 0,
669 1164 "-1": 0,
670 1165 "laugh": 0,
671 "hooray": 3,
1166 + "hooray": 4,
672 1167 "confused": 0,
673 1168 "heart": 0,
674 1169 "rocket": 0,
@@ -699,6 +1194,7 @@
699 1194 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
700 1195 "received_events_url": "https://api.github.com/users/ferd/received_events",
701 1196 "type": "User",
1197 + "user_view_type": "public",
702 1198 "site_admin": false
703 1199 },
704 1200 "node_id": "MDc6UmVsZWFzZTQzNjY0MDU5",
@@ -706,8 +1202,10 @@
706 1202 "target_commitish": "master",
707 1203 "name": "3.13.3",
708 1204 "draft": false,
1205 + "immutable": false,
709 1206 "prerelease": false,
710 1207 "created_at": "2021-05-26T23:44:42Z",
1208 + "updated_at": "2021-05-26T23:45:37Z",
711 1209 "published_at": "2021-05-26T23:45:37Z",
712 1210 "assets": [
713 1211 {
@@ -734,12 +1232,14 @@
734 1232 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
735 1233 "received_events_url": "https://api.github.com/users/ferd/received_events",
736 1234 "type": "User",
1235 + "user_view_type": "public",
737 1236 "site_admin": false
738 1237 },
739 1238 "content_type": "application/octet-stream",
740 1239 "state": "uploaded",
741 1240 "size": 839773,
742 "download_count": 3479,
1241 + "digest": null,
1242 + "download_count": 4457,
743 1243 "created_at": "2021-05-27T16:57:10Z",
744 1244 "updated_at": "2021-05-27T16:57:11Z",
745 1245 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.13.3/rebar3"
@@ -773,6 +1273,7 @@
773 1273 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
774 1274 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
775 1275 "type": "Bot",
1276 + "user_view_type": "public",
776 1277 "site_admin": false
777 1278 },
778 1279 "node_id": "MDc6UmVsZWFzZTQzNDY1MDE5",
@@ -780,8 +1281,10 @@
780 1281 "target_commitish": "d7ef89721c6c64daf07c0b90c43c55528c7b1e4c",
781 1282 "name": "3.16.1",
782 1283 "draft": false,
1284 + "immutable": false,
783 1285 "prerelease": false,
784 1286 "created_at": "2021-05-24T13:23:30Z",
1287 + "updated_at": "2021-05-24T13:34:22Z",
785 1288 "published_at": "2021-05-24T13:28:54Z",
786 1289 "assets": [
787 1290 {
@@ -808,12 +1311,14 @@
808 1311 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
809 1312 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
810 1313 "type": "Bot",
1314 + "user_view_type": "public",
811 1315 "site_admin": false
812 1316 },
813 1317 "content_type": "application/octet-stream",
814 1318 "state": "uploaded",
815 1319 "size": 942316,
816 "download_count": 56277,
1320 + "digest": null,
1321 + "download_count": 59595,
817 1322 "created_at": "2021-05-24T13:28:54Z",
818 1323 "updated_at": "2021-05-24T13:28:55Z",
819 1324 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.16.1/rebar3"
@@ -847,6 +1352,7 @@
847 1352 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
848 1353 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
849 1354 "type": "Bot",
1355 + "user_view_type": "public",
850 1356 "site_admin": false
851 1357 },
852 1358 "node_id": "MDc6UmVsZWFzZTQzNDY0NTMy",
@@ -854,8 +1360,10 @@
854 1360 "target_commitish": "0be8717a4ff5b4a0c3dcef5031fe9833197d861e",
855 1361 "name": "3.15.2",
856 1362 "draft": false,
1363 + "immutable": false,
857 1364 "prerelease": false,
858 1365 "created_at": "2021-05-24T13:12:51Z",
1366 + "updated_at": "2021-05-24T13:33:34Z",
859 1367 "published_at": "2021-05-24T13:20:56Z",
860 1368 "assets": [
861 1369 {
@@ -882,12 +1390,14 @@
882 1390 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
883 1391 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
884 1392 "type": "Bot",
1393 + "user_view_type": "public",
885 1394 "site_admin": false
886 1395 },
887 1396 "content_type": "application/octet-stream",
888 1397 "state": "uploaded",
889 1398 "size": 952373,
890 "download_count": 34092,
1399 + "digest": null,
1400 + "download_count": 47106,
891 1401 "created_at": "2021-05-24T13:20:57Z",
892 1402 "updated_at": "2021-05-24T13:20:57Z",
893 1403 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.15.2/rebar3"
@@ -921,6 +1431,7 @@
921 1431 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
922 1432 "received_events_url": "https://api.github.com/users/ferd/received_events",
923 1433 "type": "User",
1434 + "user_view_type": "public",
924 1435 "site_admin": false
925 1436 },
926 1437 "node_id": "MDc6UmVsZWFzZTQzMTg0MjEz",
@@ -928,8 +1439,10 @@
928 1439 "target_commitish": "master",
929 1440 "name": "3.16.0",
930 1441 "draft": false,
1442 + "immutable": false,
931 1443 "prerelease": false,
932 1444 "created_at": "2021-05-19T01:38:33Z",
1445 + "updated_at": "2021-05-19T01:51:56Z",
933 1446 "published_at": "2021-05-19T01:51:56Z",
934 1447 "assets": [
935 1448 {
@@ -956,12 +1469,14 @@
956 1469 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
957 1470 "received_events_url": "https://api.github.com/users/ferd/received_events",
958 1471 "type": "User",
1472 + "user_view_type": "public",
959 1473 "site_admin": false
960 1474 },
961 1475 "content_type": "application/octet-stream",
962 1476 "state": "uploaded",
963 1477 "size": 939594,
964 "download_count": 1031,
1478 + "digest": null,
1479 + "download_count": 1302,
965 1480 "created_at": "2021-05-19T01:54:58Z",
966 1481 "updated_at": "2021-05-19T01:55:03Z",
967 1482 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.16.0/rebar3"
@@ -995,6 +1510,7 @@
995 1510 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
996 1511 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
997 1512 "type": "Bot",
1513 + "user_view_type": "public",
998 1514 "site_admin": false
999 1515 },
1000 1516 "node_id": "MDc6UmVsZWFzZTQxNjcxNzE1",
@@ -1002,8 +1518,10 @@
1002 1518 "target_commitish": "e7f896aeedca2a5f1ceec60b7013d1535d49da40",
1003 1519 "name": "3.15.1",
1004 1520 "draft": false,
1521 + "immutable": false,
1005 1522 "prerelease": false,
1006 1523 "created_at": "2021-04-19T21:03:27Z",
1524 + "updated_at": "2021-04-19T21:12:03Z",
1007 1525 "published_at": "2021-04-19T21:10:41Z",
1008 1526 "assets": [
1009 1527 {
@@ -1030,12 +1548,14 @@
1030 1548 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
1031 1549 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
1032 1550 "type": "Bot",
1551 + "user_view_type": "public",
1033 1552 "site_admin": false
1034 1553 },
1035 1554 "content_type": "application/octet-stream",
1036 1555 "state": "uploaded",
1037 1556 "size": 951017,
1038 "download_count": 4642,
1557 + "digest": null,
1558 + "download_count": 5204,
1039 1559 "created_at": "2021-04-19T21:10:42Z",
1040 1560 "updated_at": "2021-04-19T21:10:42Z",
1041 1561 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.15.1/rebar3"
@@ -1069,6 +1589,7 @@
1069 1589 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
1070 1590 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
1071 1591 "type": "Bot",
1592 + "user_view_type": "public",
1072 1593 "site_admin": false
1073 1594 },
1074 1595 "node_id": "MDc6UmVsZWFzZTQxNjEyMTU1",
@@ -1076,8 +1597,10 @@
1076 1597 "target_commitish": "44a4c53978dd590afe3a3400c2dcc0f9bc05d028",
1077 1598 "name": "3.15.0",
1078 1599 "draft": false,
1600 + "immutable": false,
1079 1601 "prerelease": false,
1080 1602 "created_at": "2021-04-18T19:58:15Z",
1603 + "updated_at": "2021-04-18T21:08:28Z",
1081 1604 "published_at": "2021-04-18T20:04:16Z",
1082 1605 "assets": [
1083 1606 {
@@ -1104,12 +1627,14 @@
1104 1627 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
1105 1628 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
1106 1629 "type": "Bot",
1630 + "user_view_type": "public",
1107 1631 "site_admin": false
1108 1632 },
1109 1633 "content_type": "application/octet-stream",
1110 1634 "state": "uploaded",
1111 1635 "size": 951015,
1112 "download_count": 1059,
1636 + "digest": null,
1637 + "download_count": 1289,
1113 1638 "created_at": "2021-04-18T20:04:17Z",
1114 1639 "updated_at": "2021-04-18T20:04:17Z",
1115 1640 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.15.0/rebar3"
@@ -1143,6 +1668,7 @@
1143 1668 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
1144 1669 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
1145 1670 "type": "Bot",
1671 + "user_view_type": "public",
1146 1672 "site_admin": false
1147 1673 },
1148 1674 "node_id": "MDc6UmVsZWFzZTM4Njg2OTEx",
@@ -1150,8 +1676,10 @@
1150 1676 "target_commitish": "2d443b5c8b9fe5f1beb8027e9c2ca7e5dcc61810",
1151 1677 "name": "3.14.4",
1152 1678 "draft": false,
1679 + "immutable": false,
1153 1680 "prerelease": false,
1154 1681 "created_at": "2021-02-25T00:33:33Z",
1682 + "updated_at": "2021-02-25T01:06:19Z",
1155 1683 "published_at": "2021-02-25T01:05:37Z",
1156 1684 "assets": [
1157 1685 {
@@ -1178,12 +1706,14 @@
1178 1706 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
1179 1707 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
1180 1708 "type": "Bot",
1709 + "user_view_type": "public",
1181 1710 "site_admin": false
1182 1711 },
1183 1712 "content_type": "application/octet-stream",
1184 1713 "state": "uploaded",
1185 1714 "size": 943940,
1186 "download_count": 4947,
1715 + "digest": null,
1716 + "download_count": 7450,
1187 1717 "created_at": "2021-02-25T01:05:37Z",
1188 1718 "updated_at": "2021-02-25T01:05:37Z",
1189 1719 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.14.4/rebar3"
@@ -1217,6 +1747,7 @@
1217 1747 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
1218 1748 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
1219 1749 "type": "Bot",
1750 + "user_view_type": "public",
1220 1751 "site_admin": false
1221 1752 },
1222 1753 "node_id": "MDc6UmVsZWFzZTM0Njk0ODQ5",
@@ -1224,8 +1755,10 @@
1224 1755 "target_commitish": "6036581295a6741612dea9eed5277affc5da21d1",
1225 1756 "name": "3.14.3",
1226 1757 "draft": false,
1758 + "immutable": false,
1227 1759 "prerelease": false,
1228 1760 "created_at": "2020-12-02T14:06:37Z",
1761 + "updated_at": "2020-12-02T14:37:08Z",
1229 1762 "published_at": "2020-12-02T14:33:38Z",
1230 1763 "assets": [
1231 1764 {
@@ -1252,12 +1785,14 @@
1252 1785 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
1253 1786 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
1254 1787 "type": "Bot",
1788 + "user_view_type": "public",
1255 1789 "site_admin": false
1256 1790 },
1257 1791 "content_type": "application/octet-stream",
1258 1792 "state": "uploaded",
1259 1793 "size": 942595,
1260 "download_count": 7549,
1794 + "digest": null,
1795 + "download_count": 10156,
1261 1796 "created_at": "2020-12-02T14:33:39Z",
1262 1797 "updated_at": "2020-12-02T14:33:39Z",
1263 1798 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.14.3/rebar3"
@@ -1291,6 +1826,7 @@
1291 1826 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
1292 1827 "received_events_url": "https://api.github.com/users/ferd/received_events",
1293 1828 "type": "User",
1829 + "user_view_type": "public",
1294 1830 "site_admin": false
1295 1831 },
1296 1832 "node_id": "MDc6UmVsZWFzZTM0MTkwODkx",
@@ -1298,8 +1834,10 @@
1298 1834 "target_commitish": "master",
1299 1835 "name": "3.14.2",
1300 1836 "draft": false,
1837 + "immutable": false,
1301 1838 "prerelease": false,
1302 1839 "created_at": "2020-11-19T18:30:56Z",
1840 + "updated_at": "2020-11-19T18:33:56Z",
1303 1841 "published_at": "2020-11-19T18:33:56Z",
1304 1842 "assets": [
1305 1843 {
@@ -1326,12 +1864,14 @@
1326 1864 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
1327 1865 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
1328 1866 "type": "User",
1867 + "user_view_type": "public",
1329 1868 "site_admin": false
1330 1869 },
1331 1870 "content_type": "application/octet-stream",
1332 1871 "state": "uploaded",
1333 1872 "size": 939690,
1334 "download_count": 24160,
1873 + "digest": null,
1874 + "download_count": 24302,
1335 1875 "created_at": "2020-11-19T19:06:51Z",
1336 1876 "updated_at": "2020-11-19T19:06:53Z",
1337 1877 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.14.2/rebar3"
@@ -1365,6 +1905,7 @@
1365 1905 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
1366 1906 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
1367 1907 "type": "User",
1908 + "user_view_type": "public",
1368 1909 "site_admin": false
1369 1910 },
1370 1911 "node_id": "MDc6UmVsZWFzZTMwNjkwOTA2",
@@ -1372,8 +1913,10 @@
1372 1913 "target_commitish": "master",
1373 1914 "name": "3.14.1",
1374 1915 "draft": false,
1916 + "immutable": false,
1375 1917 "prerelease": false,
1376 1918 "created_at": "2020-09-03T21:55:52Z",
1919 + "updated_at": "2020-09-03T21:58:00Z",
1377 1920 "published_at": "2020-09-03T21:58:00Z",
1378 1921 "assets": [
1379 1922 {
@@ -1400,12 +1943,14 @@
1400 1943 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
1401 1944 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
1402 1945 "type": "User",
1946 + "user_view_type": "public",
1403 1947 "site_admin": false
1404 1948 },
1405 1949 "content_type": "application/octet-stream",
1406 1950 "state": "uploaded",
1407 1951 "size": 922945,
1408 "download_count": 2950,
1952 + "digest": null,
1953 + "download_count": 3487,
1409 1954 "created_at": "2020-09-03T22:16:14Z",
1410 1955 "updated_at": "2020-09-03T22:16:16Z",
1411 1956 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.14.1/rebar3"
@@ -1439,6 +1984,7 @@
1439 1984 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
1440 1985 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
1441 1986 "type": "User",
1987 + "user_view_type": "public",
1442 1988 "site_admin": false
1443 1989 },
1444 1990 "node_id": "MDc6UmVsZWFzZTMwNDY1MjAz",
@@ -1446,8 +1992,10 @@
1446 1992 "target_commitish": "master",
1447 1993 "name": "3.14.0",
1448 1994 "draft": false,
1995 + "immutable": false,
1449 1996 "prerelease": false,
1450 1997 "created_at": "2020-08-31T21:59:22Z",
1998 + "updated_at": "2020-08-31T22:11:43Z",
1451 1999 "published_at": "2020-08-31T22:11:43Z",
1452 2000 "assets": [
1453 2001 {
@@ -1474,12 +2022,14 @@
1474 2022 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
1475 2023 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
1476 2024 "type": "Bot",
2025 + "user_view_type": "public",
1477 2026 "site_admin": false
1478 2027 },
1479 2028 "content_type": "application/zip",
1480 2029 "state": "uploaded",
1481 2030 "size": 923040,
1482 "download_count": 321,
2031 + "digest": null,
2032 + "download_count": 847,
1483 2033 "created_at": "2020-08-31T22:17:59Z",
1484 2034 "updated_at": "2020-08-31T22:17:59Z",
1485 2035 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.14.0/rebar3"
@@ -1513,6 +2063,7 @@
1513 2063 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
1514 2064 "received_events_url": "https://api.github.com/users/ferd/received_events",
1515 2065 "type": "User",
2066 + "user_view_type": "public",
1516 2067 "site_admin": false
1517 2068 },
1518 2069 "node_id": "MDc6UmVsZWFzZTI2OTk2NDQy",
@@ -1520,8 +2071,10 @@
1520 2071 "target_commitish": "master",
1521 2072 "name": "3.14.0-rc2",
1522 2073 "draft": false,
2074 + "immutable": false,
1523 2075 "prerelease": true,
1524 2076 "created_at": "2020-05-28T15:28:51Z",
2077 + "updated_at": "2020-05-28T15:30:21Z",
1525 2078 "published_at": "2020-05-28T15:30:21Z",
1526 2079 "assets": [
1527 2080 {
@@ -1548,12 +2101,14 @@
1548 2101 "events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
1549 2102 "received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
1550 2103 "type": "Bot",
2104 + "user_view_type": "public",
1551 2105 "site_admin": false
1552 2106 },
1553 2107 "content_type": "application/zip",
1554 2108 "state": "uploaded",
1555 2109 "size": 913912,
1556 "download_count": 208,
2110 + "digest": null,
2111 + "download_count": 235,
1557 2112 "created_at": "2020-05-28T15:37:06Z",
1558 2113 "updated_at": "2020-05-28T15:37:07Z",
1559 2114 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.14.0-rc2/rebar3"
@@ -1587,6 +2142,7 @@
1587 2142 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
1588 2143 "received_events_url": "https://api.github.com/users/ferd/received_events",
1589 2144 "type": "User",
2145 + "user_view_type": "public",
1590 2146 "site_admin": false
1591 2147 },
1592 2148 "node_id": "MDc6UmVsZWFzZTI1ODE2Mjg4",
@@ -1594,8 +2150,10 @@
1594 2150 "target_commitish": "v3.13",
1595 2151 "name": "3.13.2",
1596 2152 "draft": false,
2153 + "immutable": false,
1597 2154 "prerelease": false,
1598 2155 "created_at": "2020-04-23T15:56:48Z",
2156 + "updated_at": "2020-04-23T16:03:05Z",
1599 2157 "published_at": "2020-04-23T16:03:05Z",
1600 2158 "assets": [
1601 2159 {
@@ -1622,12 +2180,14 @@
1622 2180 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
1623 2181 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
1624 2182 "type": "User",
2183 + "user_view_type": "public",
1625 2184 "site_admin": false
1626 2185 },
1627 2186 "content_type": "application/octet-stream",
1628 2187 "state": "uploaded",
1629 2188 "size": 839684,
1630 "download_count": 97010,
2189 + "digest": null,
2190 + "download_count": 145617,
1631 2191 "created_at": "2020-07-01T00:19:00Z",
1632 2192 "updated_at": "2020-07-01T00:19:01Z",
1633 2193 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.13.2/rebar3"
@@ -1661,6 +2221,7 @@
1661 2221 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
1662 2222 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
1663 2223 "type": "User",
2224 + "user_view_type": "public",
1664 2225 "site_admin": false
1665 2226 },
1666 2227 "node_id": "MDc6UmVsZWFzZTI1NjQyOTAw",
@@ -1668,8 +2229,10 @@
1668 2229 "target_commitish": "master",
1669 2230 "name": "3.14.0-rc1",
1670 2231 "draft": false,
2232 + "immutable": false,
1671 2233 "prerelease": true,
1672 2234 "created_at": "2020-04-18T17:43:06Z",
2235 + "updated_at": "2020-04-18T18:11:18Z",
1673 2236 "published_at": "2020-04-18T17:50:32Z",
1674 2237 "assets": [
1675 2238 {
@@ -1696,12 +2259,14 @@
1696 2259 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
1697 2260 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
1698 2261 "type": "User",
2262 + "user_view_type": "public",
1699 2263 "site_admin": false
1700 2264 },
1701 2265 "content_type": "application/octet-stream",
1702 2266 "state": "uploaded",
1703 2267 "size": 898017,
1704 "download_count": 47,
2268 + "digest": null,
2269 + "download_count": 61,
1705 2270 "created_at": "2020-04-18T18:35:49Z",
1706 2271 "updated_at": "2020-04-18T18:35:50Z",
1707 2272 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.14.0-rc1/rebar3"
@@ -1735,6 +2300,7 @@
1735 2300 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
1736 2301 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
1737 2302 "type": "User",
2303 + "user_view_type": "public",
1738 2304 "site_admin": false
1739 2305 },
1740 2306 "node_id": "MDc6UmVsZWFzZTI0MDU5NzU5",
@@ -1742,8 +2308,10 @@
1742 2308 "target_commitish": "master",
1743 2309 "name": "3.13.1",
1744 2310 "draft": false,
2311 + "immutable": false,
1745 2312 "prerelease": false,
1746 2313 "created_at": "2020-02-28T01:15:17Z",
2314 + "updated_at": "2020-02-28T01:16:00Z",
1747 2315 "published_at": "2020-02-28T01:16:00Z",
1748 2316 "assets": [
1749 2317 {
@@ -1770,12 +2338,14 @@
1770 2338 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
1771 2339 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
1772 2340 "type": "User",
2341 + "user_view_type": "public",
1773 2342 "site_admin": false
1774 2343 },
1775 2344 "content_type": "application/octet-stream",
1776 2345 "state": "uploaded",
1777 2346 "size": 839594,
1778 "download_count": 5010,
2347 + "digest": null,
2348 + "download_count": 5368,
1779 2349 "created_at": "2020-02-28T01:50:18Z",
1780 2350 "updated_at": "2020-02-28T01:50:20Z",
1781 2351 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.13.1/rebar3"
@@ -1809,6 +2379,7 @@
1809 2379 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
1810 2380 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
1811 2381 "type": "User",
2382 + "user_view_type": "public",
1812 2383 "site_admin": false
1813 2384 },
1814 2385 "node_id": "MDc6UmVsZWFzZTIyNDE3NzYz",
@@ -1816,8 +2387,10 @@
1816 2387 "target_commitish": "master",
1817 2388 "name": "3.13.0",
1818 2389 "draft": false,
2390 + "immutable": false,
1819 2391 "prerelease": false,
1820 2392 "created_at": "2019-12-22T22:38:11Z",
2393 + "updated_at": "2019-12-22T22:42:11Z",
1821 2394 "published_at": "2019-12-22T22:42:11Z",
1822 2395 "assets": [
1823 2396 {
@@ -1844,12 +2417,14 @@
1844 2417 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
1845 2418 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
1846 2419 "type": "User",
2420 + "user_view_type": "public",
1847 2421 "site_admin": false
1848 2422 },
1849 2423 "content_type": "application/octet-stream",
1850 2424 "state": "uploaded",
1851 2425 "size": 838112,
1852 "download_count": 2070,
2426 + "digest": null,
2427 + "download_count": 2383,
1853 2428 "created_at": "2019-12-22T23:17:32Z",
1854 2429 "updated_at": "2019-12-22T23:17:33Z",
1855 2430 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.13.0/rebar3"
@@ -1883,6 +2458,7 @@
1883 2458 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
1884 2459 "received_events_url": "https://api.github.com/users/ferd/received_events",
1885 2460 "type": "User",
2461 + "user_view_type": "public",
1886 2462 "site_admin": false
1887 2463 },
1888 2464 "node_id": "MDc6UmVsZWFzZTE5NDQxMTg3",
@@ -1890,8 +2466,10 @@
1890 2466 "target_commitish": "master",
1891 2467 "name": "3.12.0",
1892 2468 "draft": false,
2469 + "immutable": false,
1893 2470 "prerelease": false,
1894 2471 "created_at": "2019-08-21T15:33:53Z",
2472 + "updated_at": "2019-08-21T15:49:13Z",
1895 2473 "published_at": "2019-08-21T15:49:13Z",
1896 2474 "assets": [
1897 2475 {
@@ -1918,12 +2496,14 @@
1918 2496 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
1919 2497 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
1920 2498 "type": "User",
2499 + "user_view_type": "public",
1921 2500 "site_admin": false
1922 2501 },
1923 2502 "content_type": "application/octet-stream",
1924 2503 "state": "uploaded",
1925 2504 "size": 836907,
1926 "download_count": 5799,
2505 + "digest": null,
2506 + "download_count": 7225,
1927 2507 "created_at": "2019-08-21T16:15:12Z",
1928 2508 "updated_at": "2019-08-21T16:15:13Z",
1929 2509 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.12.0/rebar3"
@@ -1957,6 +2537,7 @@
1957 2537 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
1958 2538 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
1959 2539 "type": "User",
2540 + "user_view_type": "public",
1960 2541 "site_admin": false
1961 2542 },
1962 2543 "node_id": "MDc6UmVsZWFzZTE3NzIyNzI2",
@@ -1964,8 +2545,10 @@
1964 2545 "target_commitish": "master",
1965 2546 "name": "3.11.1",
1966 2547 "draft": false,
2548 + "immutable": false,
1967 2549 "prerelease": false,
1968 2550 "created_at": "2019-06-01T15:42:00Z",
2551 + "updated_at": "2019-06-01T15:43:41Z",
1969 2552 "published_at": "2019-06-01T15:43:41Z",
1970 2553 "assets": [
1971 2554 {
@@ -1992,12 +2575,14 @@
1992 2575 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
1993 2576 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
1994 2577 "type": "User",
2578 + "user_view_type": "public",
1995 2579 "site_admin": false
1996 2580 },
1997 2581 "content_type": "application/octet-stream",
1998 2582 "state": "uploaded",
1999 2583 "size": 834105,
2000 "download_count": 7500,
2584 + "digest": null,
2585 + "download_count": 7683,
2001 2586 "created_at": "2019-06-01T16:16:23Z",
2002 2587 "updated_at": "2019-06-01T16:16:24Z",
2003 2588 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.11.1/rebar3"
@@ -2031,6 +2616,7 @@
2031 2616 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2032 2617 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2033 2618 "type": "User",
2619 + "user_view_type": "public",
2034 2620 "site_admin": false
2035 2621 },
2036 2622 "node_id": "MDc6UmVsZWFzZTE3NjkyNTAz",
@@ -2038,8 +2624,10 @@
2038 2624 "target_commitish": "master",
2039 2625 "name": "3.11.0",
2040 2626 "draft": false,
2627 + "immutable": false,
2041 2628 "prerelease": false,
2042 2629 "created_at": "2019-05-30T14:03:12Z",
2630 + "updated_at": "2019-05-30T23:13:34Z",
2043 2631 "published_at": "2019-05-30T21:44:16Z",
2044 2632 "assets": [
2045 2633 {
@@ -2066,12 +2654,14 @@
2066 2654 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2067 2655 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2068 2656 "type": "User",
2657 + "user_view_type": "public",
2069 2658 "site_admin": false
2070 2659 },
2071 2660 "content_type": "application/octet-stream",
2072 2661 "state": "uploaded",
2073 2662 "size": 834171,
2074 "download_count": 373,
2663 + "digest": null,
2664 + "download_count": 522,
2075 2665 "created_at": "2019-05-30T22:28:29Z",
2076 2666 "updated_at": "2019-05-30T22:28:30Z",
2077 2667 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.11.0/rebar3"
@@ -2105,6 +2695,7 @@
2105 2695 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2106 2696 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2107 2697 "type": "User",
2698 + "user_view_type": "public",
2108 2699 "site_admin": false
2109 2700 },
2110 2701 "node_id": "MDc6UmVsZWFzZTE2Nzk2NzYy",
@@ -2112,8 +2703,10 @@
2112 2703 "target_commitish": "master",
2113 2704 "name": "3.10.0",
2114 2705 "draft": false,
2706 + "immutable": false,
2115 2707 "prerelease": false,
2116 2708 "created_at": "2019-04-16T14:05:28Z",
2709 + "updated_at": "2019-04-16T14:19:34Z",
2117 2710 "published_at": "2019-04-16T14:19:34Z",
2118 2711 "assets": [
2119 2712 {
@@ -2140,12 +2733,14 @@
2140 2733 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2141 2734 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2142 2735 "type": "User",
2736 + "user_view_type": "public",
2143 2737 "site_admin": false
2144 2738 },
2145 2739 "content_type": "application/octet-stream",
2146 2740 "state": "uploaded",
2147 2741 "size": 831057,
2148 "download_count": 3900,
2742 + "digest": null,
2743 + "download_count": 4133,
2149 2744 "created_at": "2019-04-16T14:23:08Z",
2150 2745 "updated_at": "2019-04-16T14:23:09Z",
2151 2746 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.10.0/rebar3"
@@ -2179,6 +2774,7 @@
2179 2774 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
2180 2775 "received_events_url": "https://api.github.com/users/ferd/received_events",
2181 2776 "type": "User",
2777 + "user_view_type": "public",
2182 2778 "site_admin": false
2183 2779 },
2184 2780 "node_id": "MDc6UmVsZWFzZTE2MTE4NDMy",
@@ -2186,8 +2782,10 @@
2186 2782 "target_commitish": "master",
2187 2783 "name": "3.9.1",
2188 2784 "draft": false,
2785 + "immutable": false,
2189 2786 "prerelease": false,
2190 2787 "created_at": "2019-03-14T15:33:22Z",
2788 + "updated_at": "2019-03-14T15:36:17Z",
2191 2789 "published_at": "2019-03-14T15:36:17Z",
2192 2790 "assets": [
2193 2791 {
@@ -2214,12 +2812,14 @@
2214 2812 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2215 2813 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2216 2814 "type": "User",
2815 + "user_view_type": "public",
2217 2816 "site_admin": false
2218 2817 },
2219 2818 "content_type": "application/octet-stream",
2220 2819 "state": "uploaded",
2221 2820 "size": 824598,
2222 "download_count": 1819,
2821 + "digest": null,
2822 + "download_count": 2136,
2223 2823 "created_at": "2019-03-14T15:37:57Z",
2224 2824 "updated_at": "2019-03-14T15:37:58Z",
2225 2825 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.9.1/rebar3"
@@ -2253,6 +2853,7 @@
2253 2853 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
2254 2854 "received_events_url": "https://api.github.com/users/ferd/received_events",
2255 2855 "type": "User",
2856 + "user_view_type": "public",
2256 2857 "site_admin": false
2257 2858 },
2258 2859 "node_id": "MDc6UmVsZWFzZTE1Mzg3Mjk0",
@@ -2260,8 +2861,10 @@
2260 2861 "target_commitish": "master",
2261 2862 "name": "3.9.0",
2262 2863 "draft": false,
2864 + "immutable": false,
2263 2865 "prerelease": false,
2264 2866 "created_at": "2019-02-06T00:34:06Z",
2867 + "updated_at": "2019-02-06T00:38:12Z",
2265 2868 "published_at": "2019-02-06T00:38:12Z",
2266 2869 "assets": [
2267 2870 {
@@ -2288,12 +2891,14 @@
2288 2891 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2289 2892 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2290 2893 "type": "User",
2894 + "user_view_type": "public",
2291 2895 "site_admin": false
2292 2896 },
2293 2897 "content_type": "application/octet-stream",
2294 2898 "state": "uploaded",
2295 2899 "size": 985460,
2296 "download_count": 1380,
2900 + "digest": null,
2901 + "download_count": 1507,
2297 2902 "created_at": "2019-02-06T00:50:17Z",
2298 2903 "updated_at": "2019-02-06T00:50:18Z",
2299 2904 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.9.0/rebar3"
@@ -2327,6 +2932,7 @@
2327 2932 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
2328 2933 "received_events_url": "https://api.github.com/users/ferd/received_events",
2329 2934 "type": "User",
2935 + "user_view_type": "public",
2330 2936 "site_admin": false
2331 2937 },
2332 2938 "node_id": "MDc6UmVsZWFzZTE0ODE4NjA1",
@@ -2334,8 +2940,10 @@
2334 2940 "target_commitish": "master",
2335 2941 "name": "3.8.0",
2336 2942 "draft": false,
2943 + "immutable": false,
2337 2944 "prerelease": false,
2338 2945 "created_at": "2019-01-05T21:54:18Z",
2946 + "updated_at": "2019-01-05T22:01:40Z",
2339 2947 "published_at": "2019-01-05T22:01:40Z",
2340 2948 "assets": [
2341 2949 {
@@ -2362,12 +2970,14 @@
2362 2970 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2363 2971 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2364 2972 "type": "User",
2973 + "user_view_type": "public",
2365 2974 "site_admin": false
2366 2975 },
2367 2976 "content_type": "application/octet-stream",
2368 2977 "state": "uploaded",
2369 2978 "size": 982888,
2370 "download_count": 822,
2979 + "digest": null,
2980 + "download_count": 946,
2371 2981 "created_at": "2019-01-05T23:06:29Z",
2372 2982 "updated_at": "2019-01-05T23:06:30Z",
2373 2983 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.8.0/rebar3"
@@ -2401,6 +3011,7 @@
2401 3011 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
2402 3012 "received_events_url": "https://api.github.com/users/ferd/received_events",
2403 3013 "type": "User",
3014 + "user_view_type": "public",
2404 3015 "site_admin": false
2405 3016 },
2406 3017 "node_id": "MDc6UmVsZWFzZTE0MjE5OTkw",
@@ -2408,8 +3019,10 @@
2408 3019 "target_commitish": "master",
2409 3020 "name": "3.7.5",
2410 3021 "draft": false,
3022 + "immutable": false,
2411 3023 "prerelease": false,
2412 3024 "created_at": "2018-11-27T23:22:09Z",
3025 + "updated_at": "2018-11-27T23:24:32Z",
2413 3026 "published_at": "2018-11-27T23:24:32Z",
2414 3027 "assets": [
2415 3028 {
@@ -2436,12 +3049,14 @@
2436 3049 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2437 3050 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2438 3051 "type": "User",
3052 + "user_view_type": "public",
2439 3053 "site_admin": false
2440 3054 },
2441 3055 "content_type": "application/octet-stream",
2442 3056 "state": "uploaded",
2443 3057 "size": 968737,
2444 "download_count": 2534,
3058 + "digest": null,
3059 + "download_count": 2594,
2445 3060 "created_at": "2018-11-27T23:45:24Z",
2446 3061 "updated_at": "2018-11-27T23:45:25Z",
2447 3062 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.7.5/rebar3"
@@ -2475,6 +3090,7 @@
2475 3090 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2476 3091 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2477 3092 "type": "User",
3093 + "user_view_type": "public",
2478 3094 "site_admin": false
2479 3095 },
2480 3096 "node_id": "MDc6UmVsZWFzZTE0MTY4NzEy",
@@ -2482,8 +3098,10 @@
2482 3098 "target_commitish": "master",
2483 3099 "name": "3.7.4",
2484 3100 "draft": false,
3101 + "immutable": false,
2485 3102 "prerelease": false,
2486 3103 "created_at": "2018-11-24T22:22:38Z",
3104 + "updated_at": "2018-11-24T22:25:28Z",
2487 3105 "published_at": "2018-11-24T22:25:28Z",
2488 3106 "assets": [
2489 3107 {
@@ -2510,12 +3128,14 @@
2510 3128 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2511 3129 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2512 3130 "type": "User",
3131 + "user_view_type": "public",
2513 3132 "site_admin": false
2514 3133 },
2515 3134 "content_type": "application/octet-stream",
2516 3135 "state": "uploaded",
2517 3136 "size": 968847,
2518 "download_count": 392,
3137 + "digest": null,
3138 + "download_count": 409,
2519 3139 "created_at": "2018-11-24T22:28:40Z",
2520 3140 "updated_at": "2018-11-24T22:28:41Z",
2521 3141 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.7.4/rebar3"
@@ -2549,6 +3169,7 @@
2549 3169 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
2550 3170 "received_events_url": "https://api.github.com/users/ferd/received_events",
2551 3171 "type": "User",
3172 + "user_view_type": "public",
2552 3173 "site_admin": false
2553 3174 },
2554 3175 "node_id": "MDc6UmVsZWFzZTE0MTY3MzI1",
@@ -2556,8 +3177,10 @@
2556 3177 "target_commitish": "master",
2557 3178 "name": "3.7.3",
2558 3179 "draft": false,
3180 + "immutable": false,
2559 3181 "prerelease": false,
2560 3182 "created_at": "2018-11-24T16:36:54Z",
3183 + "updated_at": "2018-11-24T16:38:35Z",
2561 3184 "published_at": "2018-11-24T16:38:35Z",
2562 3185 "assets": [
2563 3186 {
@@ -2584,12 +3207,14 @@
2584 3207 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2585 3208 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2586 3209 "type": "User",
3210 + "user_view_type": "public",
2587 3211 "site_admin": false
2588 3212 },
2589 3213 "content_type": "application/octet-stream",
2590 3214 "state": "uploaded",
2591 3215 "size": 968490,
2592 "download_count": 33,
3216 + "digest": null,
3217 + "download_count": 45,
2593 3218 "created_at": "2018-11-24T16:39:46Z",
2594 3219 "updated_at": "2018-11-24T16:39:47Z",
2595 3220 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.7.3/rebar3"
@@ -2623,6 +3248,7 @@
2623 3248 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
2624 3249 "received_events_url": "https://api.github.com/users/ferd/received_events",
2625 3250 "type": "User",
3251 + "user_view_type": "public",
2626 3252 "site_admin": false
2627 3253 },
2628 3254 "node_id": "MDc6UmVsZWFzZTE0MTYzOTQ4",
@@ -2630,8 +3256,10 @@
2630 3256 "target_commitish": "master",
2631 3257 "name": "3.7.2",
2632 3258 "draft": false,
3259 + "immutable": false,
2633 3260 "prerelease": false,
2634 3261 "created_at": "2018-11-24T01:00:34Z",
3262 + "updated_at": "2018-11-24T01:04:29Z",
2635 3263 "published_at": "2018-11-24T01:04:29Z",
2636 3264 "assets": [
2637 3265 {
@@ -2658,12 +3286,14 @@
2658 3286 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2659 3287 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2660 3288 "type": "User",
3289 + "user_view_type": "public",
2661 3290 "site_admin": false
2662 3291 },
2663 3292 "content_type": "application/octet-stream",
2664 3293 "state": "uploaded",
2665 3294 "size": 968469,
2666 "download_count": 38,
3295 + "digest": null,
3296 + "download_count": 49,
2667 3297 "created_at": "2018-11-24T01:09:21Z",
2668 3298 "updated_at": "2018-11-24T01:09:22Z",
2669 3299 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.7.2/rebar3"
@@ -2697,6 +3327,7 @@
2697 3327 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2698 3328 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2699 3329 "type": "User",
3330 + "user_view_type": "public",
2700 3331 "site_admin": false
2701 3332 },
2702 3333 "node_id": "MDc6UmVsZWFzZTE0MTYzMTc0",
@@ -2704,8 +3335,10 @@
2704 3335 "target_commitish": "master",
2705 3336 "name": "3.7.1",
2706 3337 "draft": false,
3338 + "immutable": false,
2707 3339 "prerelease": false,
2708 3340 "created_at": "2018-11-23T21:57:34Z",
3341 + "updated_at": "2018-11-23T22:00:10Z",
2709 3342 "published_at": "2018-11-23T22:00:10Z",
2710 3343 "assets": [
2711 3344 {
@@ -2732,12 +3365,14 @@
2732 3365 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2733 3366 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2734 3367 "type": "User",
3368 + "user_view_type": "public",
2735 3369 "site_admin": false
2736 3370 },
2737 3371 "content_type": "application/octet-stream",
2738 3372 "state": "uploaded",
2739 3373 "size": 968499,
2740 "download_count": 37,
3374 + "digest": null,
3375 + "download_count": 59,
2741 3376 "created_at": "2018-11-23T22:06:21Z",
2742 3377 "updated_at": "2018-11-23T22:06:21Z",
2743 3378 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.7.1/rebar3"
@@ -2771,6 +3406,7 @@
2771 3406 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
2772 3407 "received_events_url": "https://api.github.com/users/ferd/received_events",
2773 3408 "type": "User",
3409 + "user_view_type": "public",
2774 3410 "site_admin": false
2775 3411 },
2776 3412 "node_id": "MDc6UmVsZWFzZTE0MTYxMjI2",
@@ -2778,8 +3414,10 @@
2778 3414 "target_commitish": "master",
2779 3415 "name": "3.7.0",
2780 3416 "draft": false,
3417 + "immutable": false,
2781 3418 "prerelease": false,
2782 3419 "created_at": "2018-11-23T18:00:02Z",
3420 + "updated_at": "2018-11-23T18:03:26Z",
2783 3421 "published_at": "2018-11-23T18:03:26Z",
2784 3422 "assets": [
2785 3423 {
@@ -2806,12 +3444,14 @@
2806 3444 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2807 3445 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2808 3446 "type": "User",
3447 + "user_view_type": "public",
2809 3448 "site_admin": false
2810 3449 },
2811 3450 "content_type": "application/octet-stream",
2812 3451 "state": "uploaded",
2813 3452 "size": 968612,
2814 "download_count": 10112,
3453 + "digest": null,
3454 + "download_count": 10310,
2815 3455 "created_at": "2018-11-23T18:55:18Z",
2816 3456 "updated_at": "2018-11-23T18:55:19Z",
2817 3457 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.7.0/rebar3"
@@ -2845,6 +3485,7 @@
2845 3485 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2846 3486 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2847 3487 "type": "User",
3488 + "user_view_type": "public",
2848 3489 "site_admin": false
2849 3490 },
2850 3491 "node_id": "MDc6UmVsZWFzZTEzMjY5OTg2",
@@ -2852,8 +3493,10 @@
2852 3493 "target_commitish": "master",
2853 3494 "name": "3.7.0-rc2",
2854 3495 "draft": false,
3496 + "immutable": false,
2855 3497 "prerelease": true,
2856 3498 "created_at": "2018-10-05T15:02:37Z",
3499 + "updated_at": "2018-11-23T18:06:22Z",
2857 3500 "published_at": "2018-10-05T15:10:55Z",
2858 3501 "assets": [
2859 3502 {
@@ -2880,12 +3523,14 @@
2880 3523 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2881 3524 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2882 3525 "type": "User",
3526 + "user_view_type": "public",
2883 3527 "site_admin": false
2884 3528 },
2885 3529 "content_type": "application/octet-stream",
2886 3530 "state": "uploaded",
2887 3531 "size": 950429,
2888 "download_count": 127,
3532 + "digest": null,
3533 + "download_count": 140,
2889 3534 "created_at": "2018-10-05T15:16:05Z",
2890 3535 "updated_at": "2018-10-05T15:16:06Z",
2891 3536 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.7.0-rc2/rebar3"
@@ -2919,6 +3564,7 @@
2919 3564 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2920 3565 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2921 3566 "type": "User",
3567 + "user_view_type": "public",
2922 3568 "site_admin": false
2923 3569 },
2924 3570 "node_id": "MDc6UmVsZWFzZTEyODk0MTYx",
@@ -2926,8 +3572,10 @@
2926 3572 "target_commitish": "master",
2927 3573 "name": "3.7.0-rc1",
2928 3574 "draft": false,
3575 + "immutable": false,
2929 3576 "prerelease": true,
2930 3577 "created_at": "2018-09-14T02:25:26Z",
3578 + "updated_at": "2018-09-14T02:45:05Z",
2931 3579 "published_at": "2018-09-14T02:33:49Z",
2932 3580 "assets": [
2933 3581 {
@@ -2954,12 +3602,14 @@
2954 3602 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
2955 3603 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
2956 3604 "type": "User",
3605 + "user_view_type": "public",
2957 3606 "site_admin": false
2958 3607 },
2959 3608 "content_type": "application/octet-stream",
2960 3609 "state": "uploaded",
2961 3610 "size": 939575,
2962 "download_count": 52,
3611 + "digest": null,
3612 + "download_count": 61,
2963 3613 "created_at": "2018-09-14T02:36:30Z",
2964 3614 "updated_at": "2018-09-14T02:36:31Z",
2965 3615 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.7.0-rc1/rebar3"
@@ -2993,6 +3643,7 @@
2993 3643 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
2994 3644 "received_events_url": "https://api.github.com/users/ferd/received_events",
2995 3645 "type": "User",
3646 + "user_view_type": "public",
2996 3647 "site_admin": false
2997 3648 },
2998 3649 "node_id": "MDc6UmVsZWFzZTEyODkxOTU0",
@@ -3000,8 +3651,10 @@
3000 3651 "target_commitish": "master",
3001 3652 "name": "3.6.2",
3002 3653 "draft": false,
3654 + "immutable": false,
3003 3655 "prerelease": false,
3004 3656 "created_at": "2018-09-13T22:16:21Z",
3657 + "updated_at": "2018-09-13T22:19:05Z",
3005 3658 "published_at": "2018-09-13T22:19:05Z",
3006 3659 "assets": [
3007 3660 {
@@ -3028,12 +3681,14 @@
3028 3681 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
3029 3682 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
3030 3683 "type": "User",
3684 + "user_view_type": "public",
3031 3685 "site_admin": false
3032 3686 },
3033 3687 "content_type": "application/octet-stream",
3034 3688 "state": "uploaded",
3035 3689 "size": 694889,
3036 "download_count": 6421,
3690 + "digest": null,
3691 + "download_count": 7367,
3037 3692 "created_at": "2018-09-14T01:03:28Z",
3038 3693 "updated_at": "2018-09-14T01:03:29Z",
3039 3694 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.6.2/rebar3"
@@ -3067,6 +3722,7 @@
3067 3722 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
3068 3723 "received_events_url": "https://api.github.com/users/ferd/received_events",
3069 3724 "type": "User",
3725 + "user_view_type": "public",
3070 3726 "site_admin": false
3071 3727 },
3072 3728 "node_id": "MDc6UmVsZWFzZTExNjQwOTU0",
@@ -3074,8 +3730,10 @@
3074 3730 "target_commitish": "main",
3075 3731 "name": "3.6.1",
3076 3732 "draft": false,
3733 + "immutable": false,
3077 3734 "prerelease": false,
3078 3735 "created_at": "2018-06-25T20:50:59Z",
3736 + "updated_at": "2018-06-25T20:52:40Z",
3079 3737 "published_at": "2018-06-25T20:52:40Z",
3080 3738 "assets": [
3081 3739 {
@@ -3102,12 +3760,14 @@
3102 3760 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
3103 3761 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
3104 3762 "type": "User",
3763 + "user_view_type": "public",
3105 3764 "site_admin": false
3106 3765 },
3107 3766 "content_type": "application/octet-stream",
3108 3767 "state": "uploaded",
3109 3768 "size": 707955,
3110 "download_count": 442950,
3769 + "digest": null,
3770 + "download_count": 521457,
3111 3771 "created_at": "2018-06-25T20:59:30Z",
3112 3772 "updated_at": "2018-06-25T20:59:30Z",
3113 3773 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.6.1/rebar3"
@@ -3141,6 +3801,7 @@
3141 3801 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
3142 3802 "received_events_url": "https://api.github.com/users/ferd/received_events",
3143 3803 "type": "User",
3804 + "user_view_type": "public",
3144 3805 "site_admin": false
3145 3806 },
3146 3807 "node_id": "MDc6UmVsZWFzZTExNTU3MTg4",
@@ -3148,8 +3809,10 @@
3148 3809 "target_commitish": "main",
3149 3810 "name": "3.6.0",
3150 3811 "draft": false,
3812 + "immutable": false,
3151 3813 "prerelease": false,
3152 3814 "created_at": "2018-06-19T20:39:24Z",
3815 + "updated_at": "2018-06-19T20:50:10Z",
3153 3816 "published_at": "2018-06-19T20:50:10Z",
3154 3817 "assets": [
3155 3818 {
@@ -3176,12 +3839,14 @@
3176 3839 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
3177 3840 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
3178 3841 "type": "User",
3842 + "user_view_type": "public",
3179 3843 "site_admin": false
3180 3844 },
3181 3845 "content_type": "application/octet-stream",
3182 3846 "state": "uploaded",
3183 3847 "size": 707245,
3184 "download_count": 809,
3848 + "digest": null,
3849 + "download_count": 882,
3185 3850 "created_at": "2018-06-19T20:53:43Z",
3186 3851 "updated_at": "2018-06-19T20:53:43Z",
3187 3852 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.6.0/rebar3"
@@ -3215,6 +3880,7 @@
3215 3880 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
3216 3881 "received_events_url": "https://api.github.com/users/ferd/received_events",
3217 3882 "type": "User",
3883 + "user_view_type": "public",
3218 3884 "site_admin": false
3219 3885 },
3220 3886 "node_id": "MDc6UmVsZWFzZTEwOTMzMzU3",
@@ -3222,8 +3888,10 @@
3222 3888 "target_commitish": "main",
3223 3889 "name": "3.5.3",
3224 3890 "draft": false,
3891 + "immutable": false,
3225 3892 "prerelease": false,
3226 3893 "created_at": "2018-05-10T01:53:20Z",
3894 + "updated_at": "2018-05-10T02:03:02Z",
3227 3895 "published_at": "2018-05-10T02:01:22Z",
3228 3896 "assets": [
3229 3897 {
@@ -3250,12 +3918,14 @@
3250 3918 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
3251 3919 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
3252 3920 "type": "User",
3921 + "user_view_type": "public",
3253 3922 "site_admin": false
3254 3923 },
3255 3924 "content_type": "application/octet-stream",
3256 3925 "state": "uploaded",
3257 3926 "size": 703666,
3258 "download_count": 335,
3927 + "digest": null,
3928 + "download_count": 625,
3259 3929 "created_at": "2018-05-11T15:11:11Z",
3260 3930 "updated_at": "2018-05-11T15:11:14Z",
3261 3931 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.5.3/rebar3"
@@ -3289,6 +3959,7 @@
3289 3959 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
3290 3960 "received_events_url": "https://api.github.com/users/ferd/received_events",
3291 3961 "type": "User",
3962 + "user_view_type": "public",
3292 3963 "site_admin": false
3293 3964 },
3294 3965 "node_id": "MDc6UmVsZWFzZTEwODQ0NTMx",
@@ -3296,8 +3967,10 @@
3296 3967 "target_commitish": "main",
3297 3968 "name": "3.5.2",
3298 3969 "draft": false,
3970 + "immutable": false,
3299 3971 "prerelease": false,
3300 3972 "created_at": "2018-05-03T23:35:35Z",
3973 + "updated_at": "2018-05-03T23:37:09Z",
3301 3974 "published_at": "2018-05-03T23:37:09Z",
3302 3975 "assets": [
3303 3976 {
@@ -3324,12 +3997,14 @@
3324 3997 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
3325 3998 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
3326 3999 "type": "User",
4000 + "user_view_type": "public",
3327 4001 "site_admin": false
3328 4002 },
3329 4003 "content_type": "application/octet-stream",
3330 4004 "state": "uploaded",
3331 4005 "size": 686342,
3332 "download_count": 310,
4006 + "digest": null,
4007 + "download_count": 328,
3333 4008 "created_at": "2018-05-04T16:38:52Z",
3334 4009 "updated_at": "2018-05-04T16:38:52Z",
3335 4010 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.5.2/rebar3"
@@ -3363,6 +4038,7 @@
3363 4038 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
3364 4039 "received_events_url": "https://api.github.com/users/ferd/received_events",
3365 4040 "type": "User",
4041 + "user_view_type": "public",
3366 4042 "site_admin": false
3367 4043 },
3368 4044 "node_id": "MDc6UmVsZWFzZTEwODQzODEz",
@@ -3370,8 +4046,10 @@
3370 4046 "target_commitish": "main",
3371 4047 "name": "3.5.1",
3372 4048 "draft": false,
4049 + "immutable": false,
3373 4050 "prerelease": false,
3374 4051 "created_at": "2018-05-03T22:17:27Z",
4052 + "updated_at": "2018-05-03T23:38:11Z",
3375 4053 "published_at": "2018-05-03T22:19:35Z",
3376 4054 "assets": [
3377 4055
@@ -3404,6 +4082,7 @@
3404 4082 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
3405 4083 "received_events_url": "https://api.github.com/users/ferd/received_events",
3406 4084 "type": "User",
4085 + "user_view_type": "public",
3407 4086 "site_admin": false
3408 4087 },
3409 4088 "node_id": "MDc6UmVsZWFzZTkwMTQ4NzU=",
@@ -3411,8 +4090,10 @@
3411 4090 "target_commitish": "main",
3412 4091 "name": "3.5.0",
3413 4092 "draft": false,
4093 + "immutable": false,
3414 4094 "prerelease": false,
3415 4095 "created_at": "2017-12-22T20:39:34Z",
4096 + "updated_at": "2017-12-22T20:41:35Z",
3416 4097 "published_at": "2017-12-22T20:41:35Z",
3417 4098 "assets": [
3418 4099 {
@@ -3439,12 +4120,14 @@
3439 4120 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
3440 4121 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
3441 4122 "type": "User",
4123 + "user_view_type": "public",
3442 4124 "site_admin": false
3443 4125 },
3444 4126 "content_type": "application/octet-stream",
3445 4127 "state": "uploaded",
3446 4128 "size": 695247,
3447 "download_count": 4006,
4129 + "digest": null,
4130 + "download_count": 4147,
3448 4131 "created_at": "2017-12-22T20:57:41Z",
3449 4132 "updated_at": "2017-12-22T20:57:43Z",
3450 4133 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.5.0/rebar3"
@@ -3478,6 +4161,7 @@
3478 4161 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
3479 4162 "received_events_url": "https://api.github.com/users/ferd/received_events",
3480 4163 "type": "User",
4164 + "user_view_type": "public",
3481 4165 "site_admin": false
3482 4166 },
3483 4167 "node_id": "MDc6UmVsZWFzZTg2MjU4NzM=",
@@ -3485,8 +4169,10 @@
3485 4169 "target_commitish": "main",
3486 4170 "name": "3.4.7",
3487 4171 "draft": false,
4172 + "immutable": false,
3488 4173 "prerelease": false,
3489 4174 "created_at": "2017-11-22T19:55:36Z",
4175 + "updated_at": "2017-11-22T19:58:56Z",
3490 4176 "published_at": "2017-11-22T19:58:56Z",
3491 4177 "assets": [
3492 4178 {
@@ -3513,12 +4199,14 @@
3513 4199 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
3514 4200 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
3515 4201 "type": "User",
4202 + "user_view_type": "public",
3516 4203 "site_admin": false
3517 4204 },
3518 4205 "content_type": "application/octet-stream",
3519 4206 "state": "uploaded",
3520 4207 "size": 689079,
3521 "download_count": 438,
4208 + "digest": null,
4209 + "download_count": 468,
3522 4210 "created_at": "2017-11-22T20:11:42Z",
3523 4211 "updated_at": "2017-11-22T20:11:43Z",
3524 4212 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.4.7/rebar3"
@@ -3552,6 +4240,7 @@
3552 4240 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
3553 4241 "received_events_url": "https://api.github.com/users/ferd/received_events",
3554 4242 "type": "User",
4243 + "user_view_type": "public",
3555 4244 "site_admin": false
3556 4245 },
3557 4246 "node_id": "MDc6UmVsZWFzZTg1NjkzODk=",
@@ -3559,8 +4248,10 @@
3559 4248 "target_commitish": "main",
3560 4249 "name": "3.4.6",
3561 4250 "draft": false,
4251 + "immutable": false,
3562 4252 "prerelease": false,
3563 4253 "created_at": "2017-11-17T22:24:27Z",
4254 + "updated_at": "2017-11-17T22:26:54Z",
3564 4255 "published_at": "2017-11-17T22:26:54Z",
3565 4256 "assets": [
3566 4257 {
@@ -3587,12 +4278,14 @@
3587 4278 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
3588 4279 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
3589 4280 "type": "User",
4281 + "user_view_type": "public",
3590 4282 "site_admin": false
3591 4283 },
3592 4284 "content_type": "application/octet-stream",
3593 4285 "state": "uploaded",
3594 4286 "size": 688657,
3595 "download_count": 55,
4287 + "digest": null,
4288 + "download_count": 68,
3596 4289 "created_at": "2017-11-17T22:33:49Z",
3597 4290 "updated_at": "2017-11-17T22:33:50Z",
3598 4291 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.4.6/rebar3"
@@ -3626,6 +4319,7 @@
3626 4319 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
3627 4320 "received_events_url": "https://api.github.com/users/ferd/received_events",
3628 4321 "type": "User",
4322 + "user_view_type": "public",
3629 4323 "site_admin": false
3630 4324 },
3631 4325 "node_id": "MDc6UmVsZWFzZTg1NjUyNDM=",
@@ -3633,8 +4327,10 @@
3633 4327 "target_commitish": "main",
3634 4328 "name": "3.4.5",
3635 4329 "draft": false,
4330 + "immutable": false,
3636 4331 "prerelease": false,
3637 4332 "created_at": "2017-11-17T17:04:11Z",
4333 + "updated_at": "2017-11-17T17:05:52Z",
3638 4334 "published_at": "2017-11-17T17:05:52Z",
3639 4335 "assets": [
3640 4336 {
@@ -3661,12 +4357,14 @@
3661 4357 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
3662 4358 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
3663 4359 "type": "User",
4360 + "user_view_type": "public",
3664 4361 "site_admin": false
3665 4362 },
3666 4363 "content_type": "application/octet-stream",
3667 4364 "state": "uploaded",
3668 4365 "size": 688352,
3669 "download_count": 37,
4366 + "digest": null,
4367 + "download_count": 48,
3670 4368 "created_at": "2017-11-17T17:21:58Z",
3671 4369 "updated_at": "2017-11-17T17:21:59Z",
3672 4370 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.4.5/rebar3"
@@ -3700,6 +4398,7 @@
3700 4398 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
3701 4399 "received_events_url": "https://api.github.com/users/ferd/received_events",
3702 4400 "type": "User",
4401 + "user_view_type": "public",
3703 4402 "site_admin": false
3704 4403 },
3705 4404 "node_id": "MDc6UmVsZWFzZTc3MDA5NzE=",
@@ -3707,8 +4406,10 @@
3707 4406 "target_commitish": "main",
3708 4407 "name": "3.4.4",
3709 4408 "draft": false,
4409 + "immutable": false,
3710 4410 "prerelease": false,
3711 4411 "created_at": "2017-09-11T01:45:05Z",
4412 + "updated_at": "2017-09-11T01:46:56Z",
3712 4413 "published_at": "2017-09-11T01:46:56Z",
3713 4414 "assets": [
3714 4415 {
@@ -3735,12 +4436,14 @@
3735 4436 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
3736 4437 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
3737 4438 "type": "User",
4439 + "user_view_type": "public",
3738 4440 "site_admin": false
3739 4441 },
3740 4442 "content_type": "application/octet-stream",
3741 4443 "state": "uploaded",
3742 4444 "size": 679522,
3743 "download_count": 7478,
4445 + "digest": null,
4446 + "download_count": 7501,
3744 4447 "created_at": "2017-09-11T02:00:03Z",
3745 4448 "updated_at": "2017-09-11T02:00:04Z",
3746 4449 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.4.4/rebar3"
@@ -3774,6 +4477,7 @@
3774 4477 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
3775 4478 "received_events_url": "https://api.github.com/users/ferd/received_events",
3776 4479 "type": "User",
4480 + "user_view_type": "public",
3777 4481 "site_admin": false
3778 4482 },
3779 4483 "node_id": "MDc6UmVsZWFzZTc0Njk4MDE=",
@@ -3781,8 +4485,10 @@
3781 4485 "target_commitish": "main",
3782 4486 "name": "3.4.3",
3783 4487 "draft": false,
4488 + "immutable": false,
3784 4489 "prerelease": false,
3785 4490 "created_at": "2017-08-21T21:25:03Z",
4491 + "updated_at": "2017-08-21T21:26:50Z",
3786 4492 "published_at": "2017-08-21T21:26:50Z",
3787 4493 "assets": [
3788 4494 {
@@ -3809,12 +4515,14 @@
3809 4515 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
3810 4516 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
3811 4517 "type": "User",
4518 + "user_view_type": "public",
3812 4519 "site_admin": false
3813 4520 },
3814 4521 "content_type": "application/octet-stream",
3815 4522 "state": "uploaded",
3816 4523 "size": 679353,
3817 "download_count": 226,
4524 + "digest": null,
4525 + "download_count": 244,
3818 4526 "created_at": "2017-08-21T21:36:56Z",
3819 4527 "updated_at": "2017-08-21T21:36:57Z",
3820 4528 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.4.3/rebar3"
@@ -3848,6 +4556,7 @@
3848 4556 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
3849 4557 "received_events_url": "https://api.github.com/users/ferd/received_events",
3850 4558 "type": "User",
4559 + "user_view_type": "public",
3851 4560 "site_admin": false
3852 4561 },
3853 4562 "node_id": "MDc6UmVsZWFzZTcwNDk5ODg=",
@@ -3855,8 +4564,10 @@
3855 4564 "target_commitish": "main",
3856 4565 "name": "3.4.2",
3857 4566 "draft": false,
4567 + "immutable": false,
3858 4568 "prerelease": false,
3859 4569 "created_at": "2017-07-14T22:26:30Z",
4570 + "updated_at": "2017-07-14T22:31:28Z",
3860 4571 "published_at": "2017-07-14T22:31:28Z",
3861 4572 "assets": [
3862 4573 {
@@ -3883,12 +4594,14 @@
3883 4594 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
3884 4595 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
3885 4596 "type": "User",
4597 + "user_view_type": "public",
3886 4598 "site_admin": false
3887 4599 },
3888 4600 "content_type": "application/octet-stream",
3889 4601 "state": "uploaded",
3890 4602 "size": 791577,
3891 "download_count": 2118,
4603 + "digest": null,
4604 + "download_count": 2144,
3892 4605 "created_at": "2017-07-14T22:54:42Z",
3893 4606 "updated_at": "2017-07-14T22:54:43Z",
3894 4607 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.4.2/rebar3"
@@ -3922,6 +4635,7 @@
3922 4635 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
3923 4636 "received_events_url": "https://api.github.com/users/ferd/received_events",
3924 4637 "type": "User",
4638 + "user_view_type": "public",
3925 4639 "site_admin": false
3926 4640 },
3927 4641 "node_id": "MDc6UmVsZWFzZTY0OTQyMzU=",
@@ -3929,8 +4643,10 @@
3929 4643 "target_commitish": "main",
3930 4644 "name": "3.4.1",
3931 4645 "draft": false,
4646 + "immutable": false,
3932 4647 "prerelease": false,
3933 4648 "created_at": "2017-05-24T18:14:59Z",
4649 + "updated_at": "2017-05-24T18:19:05Z",
3934 4650 "published_at": "2017-05-24T18:19:05Z",
3935 4651 "assets": [
3936 4652 {
@@ -3957,12 +4673,14 @@
3957 4673 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
3958 4674 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
3959 4675 "type": "User",
4676 + "user_view_type": "public",
3960 4677 "site_admin": false
3961 4678 },
3962 4679 "content_type": "application/octet-stream",
3963 4680 "state": "uploaded",
3964 4681 "size": 790573,
3965 "download_count": 9423,
4682 + "digest": null,
4683 + "download_count": 9445,
3966 4684 "created_at": "2017-05-24T18:21:29Z",
3967 4685 "updated_at": "2017-05-24T18:21:31Z",
3968 4686 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.4.1/rebar3"
@@ -3996,6 +4714,7 @@
3996 4714 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
3997 4715 "received_events_url": "https://api.github.com/users/ferd/received_events",
3998 4716 "type": "User",
4717 + "user_view_type": "public",
3999 4718 "site_admin": false
4000 4719 },
4001 4720 "node_id": "MDc6UmVsZWFzZTY0NjM3Nzg=",
@@ -4003,8 +4722,10 @@
4003 4722 "target_commitish": "main",
4004 4723 "name": "3.4.0",
4005 4724 "draft": false,
4725 + "immutable": false,
4006 4726 "prerelease": false,
4007 4727 "created_at": "2017-05-22T14:17:09Z",
4728 + "updated_at": "2017-05-22T14:22:57Z",
4008 4729 "published_at": "2017-05-22T14:22:57Z",
4009 4730 "assets": [
4010 4731 {
@@ -4031,12 +4752,14 @@
4031 4752 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
4032 4753 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
4033 4754 "type": "User",
4755 + "user_view_type": "public",
4034 4756 "site_admin": false
4035 4757 },
4036 4758 "content_type": "application/octet-stream",
4037 4759 "state": "uploaded",
4038 4760 "size": 789708,
4039 "download_count": 46,
4761 + "digest": null,
4762 + "download_count": 80,
4040 4763 "created_at": "2017-05-23T20:09:13Z",
4041 4764 "updated_at": "2017-05-23T20:09:15Z",
4042 4765 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.4.0/rebar3"
@@ -4070,6 +4793,7 @@
4070 4793 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
4071 4794 "received_events_url": "https://api.github.com/users/ferd/received_events",
4072 4795 "type": "User",
4796 + "user_view_type": "public",
4073 4797 "site_admin": false
4074 4798 },
4075 4799 "node_id": "MDc6UmVsZWFzZTU4NDM1MTI=",
@@ -4077,8 +4801,10 @@
4077 4801 "target_commitish": "main",
4078 4802 "name": "3.3.6",
4079 4803 "draft": false,
4804 + "immutable": false,
4080 4805 "prerelease": false,
4081 4806 "created_at": "2017-03-23T11:20:17Z",
4807 + "updated_at": "2017-03-23T11:23:36Z",
4082 4808 "published_at": "2017-03-23T11:23:36Z",
4083 4809 "assets": [
4084 4810 {
@@ -4105,12 +4831,14 @@
4105 4831 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
4106 4832 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
4107 4833 "type": "User",
4834 + "user_view_type": "public",
4108 4835 "site_admin": false
4109 4836 },
4110 4837 "content_type": "application/octet-stream",
4111 4838 "state": "uploaded",
4112 4839 "size": 785001,
4113 "download_count": 795,
4840 + "digest": null,
4841 + "download_count": 850,
4114 4842 "created_at": "2017-03-23T16:28:25Z",
4115 4843 "updated_at": "2017-03-23T16:28:27Z",
4116 4844 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.3.6/rebar3"
@@ -4144,6 +4872,7 @@
4144 4872 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
4145 4873 "received_events_url": "https://api.github.com/users/ferd/received_events",
4146 4874 "type": "User",
4875 + "user_view_type": "public",
4147 4876 "site_admin": false
4148 4877 },
4149 4878 "node_id": "MDc6UmVsZWFzZTUzNTY3MTY=",
@@ -4151,8 +4880,10 @@
4151 4880 "target_commitish": "main",
4152 4881 "name": "3.3.5",
4153 4882 "draft": false,
4883 + "immutable": false,
4154 4884 "prerelease": false,
4155 4885 "created_at": "2017-02-03T21:13:21Z",
4886 + "updated_at": "2017-02-03T21:15:41Z",
4156 4887 "published_at": "2017-02-03T21:15:41Z",
4157 4888 "assets": [
4158 4889 {
@@ -4179,12 +4910,14 @@
4179 4910 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
4180 4911 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
4181 4912 "type": "User",
4913 + "user_view_type": "public",
4182 4914 "site_admin": false
4183 4915 },
4184 4916 "content_type": "application/octet-stream",
4185 4917 "state": "uploaded",
4186 4918 "size": 782661,
4187 "download_count": 1801,
4919 + "digest": null,
4920 + "download_count": 1853,
4188 4921 "created_at": "2017-02-03T21:34:28Z",
4189 4922 "updated_at": "2017-02-03T21:34:29Z",
4190 4923 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.3.5/rebar3"
@@ -4218,6 +4951,7 @@
4218 4951 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
4219 4952 "received_events_url": "https://api.github.com/users/ferd/received_events",
4220 4953 "type": "User",
4954 + "user_view_type": "public",
4221 4955 "site_admin": false
4222 4956 },
4223 4957 "node_id": "MDc6UmVsZWFzZTUwMDI4OTg=",
@@ -4225,8 +4959,10 @@
4225 4959 "target_commitish": "main",
4226 4960 "name": "3.3.4",
4227 4961 "draft": false,
4962 + "immutable": false,
4228 4963 "prerelease": false,
4229 4964 "created_at": "2016-12-23T20:31:33Z",
4965 + "updated_at": "2016-12-23T20:35:45Z",
4230 4966 "published_at": "2016-12-23T20:35:45Z",
4231 4967 "assets": [
4232 4968 {
@@ -4253,12 +4989,14 @@
4253 4989 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
4254 4990 "received_events_url": "https://api.github.com/users/ferd/received_events",
4255 4991 "type": "User",
4992 + "user_view_type": "public",
4256 4993 "site_admin": false
4257 4994 },
4258 4995 "content_type": "application/octet-stream",
4259 4996 "state": "uploaded",
4260 4997 "size": 781024,
4261 "download_count": 366,
4998 + "digest": null,
4999 + "download_count": 379,
4262 5000 "created_at": "2016-12-23T21:11:10Z",
4263 5001 "updated_at": "2016-12-23T21:11:11Z",
4264 5002 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.3.4/rebar3"
@@ -4292,6 +5030,7 @@
4292 5030 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
4293 5031 "received_events_url": "https://api.github.com/users/ferd/received_events",
4294 5032 "type": "User",
5033 + "user_view_type": "public",
4295 5034 "site_admin": false
4296 5035 },
4297 5036 "node_id": "MDc6UmVsZWFzZTQ4NzAwNzE=",
@@ -4299,8 +5038,10 @@
4299 5038 "target_commitish": "main",
4300 5039 "name": "3.3.3",
4301 5040 "draft": false,
5041 + "immutable": false,
4302 5042 "prerelease": false,
4303 5043 "created_at": "2016-12-08T17:41:22Z",
5044 + "updated_at": "2016-12-08T17:43:38Z",
4304 5045 "published_at": "2016-12-08T17:43:38Z",
4305 5046 "assets": [
4306 5047 {
@@ -4327,12 +5068,14 @@
4327 5068 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
4328 5069 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
4329 5070 "type": "User",
5071 + "user_view_type": "public",
4330 5072 "site_admin": false
4331 5073 },
4332 5074 "content_type": "application/octet-stream",
4333 5075 "state": "uploaded",
4334 5076 "size": 778957,
4335 "download_count": 112,
5077 + "digest": null,
5078 + "download_count": 127,
4336 5079 "created_at": "2016-12-08T17:55:06Z",
4337 5080 "updated_at": "2016-12-08T17:55:07Z",
4338 5081 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.3.3/rebar3"
@@ -4366,6 +5109,7 @@
4366 5109 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
4367 5110 "received_events_url": "https://api.github.com/users/ferd/received_events",
4368 5111 "type": "User",
5112 + "user_view_type": "public",
4369 5113 "site_admin": false
4370 5114 },
4371 5115 "node_id": "MDc6UmVsZWFzZTQzOTU0NDc=",
@@ -4373,8 +5117,10 @@
4373 5117 "target_commitish": "main",
4374 5118 "name": "3.3.2",
4375 5119 "draft": false,
5120 + "immutable": false,
4376 5121 "prerelease": false,
4377 5122 "created_at": "2016-10-14T23:12:43Z",
5123 + "updated_at": "2016-10-14T23:19:35Z",
4378 5124 "published_at": "2016-10-14T23:19:35Z",
4379 5125 "assets": [
4380 5126 {
@@ -4401,12 +5147,14 @@
4401 5147 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
4402 5148 "received_events_url": "https://api.github.com/users/ferd/received_events",
4403 5149 "type": "User",
5150 + "user_view_type": "public",
4404 5151 "site_admin": false
4405 5152 },
4406 5153 "content_type": "application/octet-stream",
4407 5154 "state": "uploaded",
4408 5155 "size": 766378,
4409 "download_count": 12207,
5156 + "digest": null,
5157 + "download_count": 12259,
4410 5158 "created_at": "2016-11-21T18:23:07Z",
4411 5159 "updated_at": "2016-11-21T18:23:12Z",
4412 5160 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.3.2/rebar3"
@@ -4440,6 +5188,7 @@
4440 5188 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
4441 5189 "received_events_url": "https://api.github.com/users/ferd/received_events",
4442 5190 "type": "User",
5191 + "user_view_type": "public",
4443 5192 "site_admin": false
4444 5193 },
4445 5194 "node_id": "MDc6UmVsZWFzZTQwNDM0MTM=",
@@ -4447,8 +5196,10 @@
4447 5196 "target_commitish": "main",
4448 5197 "name": "3.3.1",
4449 5198 "draft": false,
5199 + "immutable": false,
4450 5200 "prerelease": false,
4451 5201 "created_at": "2016-09-03T00:33:44Z",
5202 + "updated_at": "2016-09-03T00:38:33Z",
4452 5203 "published_at": "2016-09-03T00:38:33Z",
4453 5204 "assets": [
4454 5205 {
@@ -4475,12 +5226,14 @@
4475 5226 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
4476 5227 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
4477 5228 "type": "User",
5229 + "user_view_type": "public",
4478 5230 "site_admin": false
4479 5231 },
4480 5232 "content_type": "application/octet-stream",
4481 5233 "state": "uploaded",
4482 5234 "size": 761988,
4483 "download_count": 2249,
5235 + "digest": null,
5236 + "download_count": 2321,
4484 5237 "created_at": "2016-09-03T17:32:01Z",
4485 5238 "updated_at": "2016-09-03T17:32:02Z",
4486 5239 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.3.1/rebar3"
@@ -4514,6 +5267,7 @@
4514 5267 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
4515 5268 "received_events_url": "https://api.github.com/users/ferd/received_events",
4516 5269 "type": "User",
5270 + "user_view_type": "public",
4517 5271 "site_admin": false
4518 5272 },
4519 5273 "node_id": "MDc6UmVsZWFzZTM5ODQ5MjY=",
@@ -4521,8 +5275,10 @@
4521 5275 "target_commitish": "master",
4522 5276 "name": "3.3.0",
4523 5277 "draft": false,
5278 + "immutable": false,
4524 5279 "prerelease": false,
4525 5280 "created_at": "2016-08-26T17:01:22Z",
5281 + "updated_at": "2016-12-08T17:52:36Z",
4526 5282 "published_at": "2016-12-08T17:40:19Z",
4527 5283 "assets": [
4528 5284 {
@@ -4549,12 +5305,14 @@
4549 5305 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
4550 5306 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
4551 5307 "type": "User",
5308 + "user_view_type": "public",
4552 5309 "site_admin": false
4553 5310 },
4554 5311 "content_type": "application/octet-stream",
4555 5312 "state": "uploaded",
4556 5313 "size": 761060,
4557 "download_count": 156,
5314 + "digest": null,
5315 + "download_count": 175,
4558 5316 "created_at": "2016-08-26T17:27:23Z",
4559 5317 "updated_at": "2016-08-26T17:27:24Z",
4560 5318 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.3.0/rebar3"
@@ -4588,6 +5346,7 @@
4588 5346 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
4589 5347 "received_events_url": "https://api.github.com/users/ferd/received_events",
4590 5348 "type": "User",
5349 + "user_view_type": "public",
4591 5350 "site_admin": false
4592 5351 },
4593 5352 "node_id": "MDc6UmVsZWFzZTM0NzQ1NzU=",
@@ -4595,8 +5354,10 @@
4595 5354 "target_commitish": "main",
4596 5355 "name": "3.2.0",
4597 5356 "draft": false,
5357 + "immutable": false,
4598 5358 "prerelease": false,
4599 5359 "created_at": "2016-06-18T20:59:13Z",
5360 + "updated_at": "2016-06-23T14:32:16Z",
4600 5361 "published_at": "2016-06-18T21:01:29Z",
4601 5362 "assets": [
4602 5363 {
@@ -4623,12 +5384,14 @@
4623 5384 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
4624 5385 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
4625 5386 "type": "User",
5387 + "user_view_type": "public",
4626 5388 "site_admin": false
4627 5389 },
4628 5390 "content_type": "application/octet-stream",
4629 5391 "state": "uploaded",
4630 5392 "size": 733570,
4631 "download_count": 12086,
5393 + "digest": null,
5394 + "download_count": 12147,
4632 5395 "created_at": "2016-06-18T21:38:56Z",
4633 5396 "updated_at": "2016-06-18T21:38:57Z",
4634 5397 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.2.0/rebar3"
@@ -4662,6 +5425,7 @@
4662 5425 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
4663 5426 "received_events_url": "https://api.github.com/users/ferd/received_events",
4664 5427 "type": "User",
5428 + "user_view_type": "public",
4665 5429 "site_admin": false
4666 5430 },
4667 5431 "node_id": "MDc6UmVsZWFzZTMyNDE0NjE=",
@@ -4669,8 +5433,10 @@
4669 5433 "target_commitish": "main",
4670 5434 "name": "3.1.1",
4671 5435 "draft": false,
5436 + "immutable": false,
4672 5437 "prerelease": false,
4673 5438 "created_at": "2016-05-17T12:31:43Z",
5439 + "updated_at": "2016-05-17T12:34:02Z",
4674 5440 "published_at": "2016-05-17T12:34:02Z",
4675 5441 "assets": [
4676 5442 {
@@ -4697,12 +5463,14 @@
4697 5463 "events_url": "https://api.github.com/users/tsloughter/events{/privacy}",
4698 5464 "received_events_url": "https://api.github.com/users/tsloughter/received_events",
4699 5465 "type": "User",
5466 + "user_view_type": "public",
4700 5467 "site_admin": false
4701 5468 },
4702 5469 "content_type": "application/octet-stream",
4703 5470 "state": "uploaded",
4704 5471 "size": 731282,
4705 "download_count": 500,
5472 + "digest": null,
5473 + "download_count": 531,
4706 5474 "created_at": "2016-05-17T13:02:34Z",
4707 5475 "updated_at": "2016-05-17T13:02:36Z",
4708 5476 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.1.1/rebar3"
@@ -4736,6 +5504,7 @@
4736 5504 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
4737 5505 "received_events_url": "https://api.github.com/users/ferd/received_events",
4738 5506 "type": "User",
5507 + "user_view_type": "public",
4739 5508 "site_admin": false
4740 5509 },
4741 5510 "node_id": "MDc6UmVsZWFzZTI5NDkzODI=",
@@ -4743,8 +5512,10 @@
4743 5512 "target_commitish": "master",
4744 5513 "name": "3.1.0",
4745 5514 "draft": false,
5515 + "immutable": false,
4746 5516 "prerelease": false,
4747 5517 "created_at": "2016-04-04T18:41:14Z",
5518 + "updated_at": "2016-04-04T18:42:16Z",
4748 5519 "published_at": "2016-04-04T18:42:16Z",
4749 5520 "assets": [
4750 5521 {
@@ -4771,12 +5542,14 @@
4771 5542 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
4772 5543 "received_events_url": "https://api.github.com/users/ferd/received_events",
4773 5544 "type": "User",
5545 + "user_view_type": "public",
4774 5546 "site_admin": false
4775 5547 },
4776 5548 "content_type": "application/octet-stream",
4777 5549 "state": "uploaded",
4778 5550 "size": 730312,
4779 "download_count": 1587,
5551 + "digest": null,
5552 + "download_count": 1613,
4780 5553 "created_at": "2016-04-05T20:09:59Z",
4781 5554 "updated_at": "2016-04-05T20:10:00Z",
4782 5555 "browser_download_url": "https://github.com/erlang/rebar3/releases/download/3.1.0/rebar3"
@@ -4810,6 +5583,7 @@
4810 5583 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
4811 5584 "received_events_url": "https://api.github.com/users/ferd/received_events",
4812 5585 "type": "User",
5586 + "user_view_type": "public",
4813 5587 "site_admin": false
4814 5588 },
4815 5589 "node_id": "MDc6UmVsZWFzZTI3NzgyNjg=",
@@ -4817,8 +5591,10 @@
4817 5591 "target_commitish": "main",
4818 5592 "name": "3.0.0 Stable",
4819 5593 "draft": false,
5594 + "immutable": false,
4820 5595 "prerelease": false,
4821 5596 "created_at": "2016-03-09T17:42:01Z",
5597 + "updated_at": "2016-03-09T18:09:45Z",
4822 5598 "published_at": "2016-03-09T18:09:45Z",
4823 5599 "assets": [
4824 5600
@@ -4851,6 +5627,7 @@
4851 5627 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
4852 5628 "received_events_url": "https://api.github.com/users/ferd/received_events",
4853 5629 "type": "User",
5630 + "user_view_type": "public",
4854 5631 "site_admin": false
4855 5632 },
4856 5633 "node_id": "MDc6UmVsZWFzZTIxMjcyNjY=",
@@ -4858,8 +5635,10 @@
4858 5635 "target_commitish": "master",
4859 5636 "name": "Fourth, and hopefully last Beta",
4860 5637 "draft": false,
5638 + "immutable": false,
4861 5639 "prerelease": false,
4862 5640 "created_at": "2015-11-14T20:16:50Z",
5641 + "updated_at": "2015-11-14T20:21:35Z",
4863 5642 "published_at": "2015-11-14T20:21:35Z",
4864 5643 "assets": [
4865 5644
@@ -4892,6 +5671,7 @@
4892 5671 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
4893 5672 "received_events_url": "https://api.github.com/users/ferd/received_events",
4894 5673 "type": "User",
5674 + "user_view_type": "public",
4895 5675 "site_admin": false
4896 5676 },
4897 5677 "node_id": "MDc6UmVsZWFzZTE4OTYxMzg=",
@@ -4899,8 +5679,10 @@
4899 5679 "target_commitish": "main",
4900 5680 "name": "Third Beta",
4901 5681 "draft": false,
5682 + "immutable": false,
4902 5683 "prerelease": false,
4903 5684 "created_at": "2015-10-01T12:28:31Z",
5685 + "updated_at": "2015-10-01T12:30:53Z",
4904 5686 "published_at": "2015-10-01T12:30:53Z",
4905 5687 "assets": [
4906 5688
@@ -4933,6 +5715,7 @@
4933 5715 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
4934 5716 "received_events_url": "https://api.github.com/users/ferd/received_events",
4935 5717 "type": "User",
5718 + "user_view_type": "public",
4936 5719 "site_admin": false
4937 5720 },
4938 5721 "node_id": "MDc6UmVsZWFzZTE3MjkxNjU=",
@@ -4940,8 +5723,10 @@
4940 5723 "target_commitish": "main",
4941 5724 "name": "Second Beta",
4942 5725 "draft": false,
5726 + "immutable": false,
4943 5727 "prerelease": false,
4944 5728 "created_at": "2015-08-27T05:43:59Z",
5729 + "updated_at": "2015-08-27T05:52:04Z",
4945 5730 "published_at": "2015-08-27T05:47:45Z",
4946 5731 "assets": [
4947 5732
@@ -4974,6 +5759,7 @@
4974 5759 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
4975 5760 "received_events_url": "https://api.github.com/users/ferd/received_events",
4976 5761 "type": "User",
5762 + "user_view_type": "public",
4977 5763 "site_admin": false
4978 5764 },
4979 5765 "node_id": "MDc6UmVsZWFzZTE0NzI5MTM=",
@@ -4981,8 +5767,10 @@
4981 5767 "target_commitish": "main",
4982 5768 "name": "First Beta",
4983 5769 "draft": false,
5770 + "immutable": false,
4984 5771 "prerelease": false,
4985 5772 "created_at": "2015-06-29T12:47:25Z",
5773 + "updated_at": "2015-06-29T13:08:52Z",
4986 5774 "published_at": "2015-06-29T13:08:52Z",
4987 5775 "assets": [
4988 5776
@@ -5015,6 +5803,7 @@
5015 5803 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
5016 5804 "received_events_url": "https://api.github.com/users/ferd/received_events",
5017 5805 "type": "User",
5806 + "user_view_type": "public",
5018 5807 "site_admin": false
5019 5808 },
5020 5809 "node_id": "MDc6UmVsZWFzZTEzNTkwMjQ=",
@@ -5022,8 +5811,10 @@
5022 5811 "target_commitish": "main",
5023 5812 "name": "alpha-6",
5024 5813 "draft": false,
5814 + "immutable": false,
5025 5815 "prerelease": true,
5026 5816 "created_at": "2015-05-31T22:28:57Z",
5817 + "updated_at": "2015-05-31T22:40:31Z",
5027 5818 "published_at": "2015-05-31T22:32:19Z",
5028 5819 "assets": [
5029 5820
@@ -5056,6 +5847,7 @@
5056 5847 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
5057 5848 "received_events_url": "https://api.github.com/users/ferd/received_events",
5058 5849 "type": "User",
5850 + "user_view_type": "public",
5059 5851 "site_admin": false
5060 5852 },
5061 5853 "node_id": "MDc6UmVsZWFzZTEyNTg1NDg=",
@@ -5063,8 +5855,10 @@
5063 5855 "target_commitish": "main",
5064 5856 "name": "alpha-5",
5065 5857 "draft": false,
5858 + "immutable": false,
5066 5859 "prerelease": true,
5067 5860 "created_at": "2015-05-05T12:07:32Z",
5861 + "updated_at": "2015-05-05T12:16:13Z",
5068 5862 "published_at": "2015-05-05T12:16:13Z",
5069 5863 "assets": [
5070 5864
@@ -5097,6 +5891,7 @@
5097 5891 "events_url": "https://api.github.com/users/ferd/events{/privacy}",
5098 5892 "received_events_url": "https://api.github.com/users/ferd/received_events",
5099 5893 "type": "User",
5894 + "user_view_type": "public",
5100 5895 "site_admin": false
5101 5896 },
5102 5897 "node_id": "MDc6UmVsZWFzZTExMjc2NTk=",
@@ -5104,8 +5899,10 @@
5104 5899 "target_commitish": "main",
5105 5900 "name": "alpha-3",
5106 5901 "draft": false,
5902 + "immutable": false,
5107 5903 "prerelease": true,
5108 5904 "created_at": "2015-04-05T19:00:26Z",
5905 + "updated_at": "2015-04-05T19:02:37Z",
5109 5906 "published_at": "2015-04-05T19:02:37Z",
5110 5907 "assets": [
5111 5908
modified test/setup-beam.test.js
+11 −11
@@ -273,7 +273,7 @@ describe('.getOTPVersion(_) - Erlang', () => {
273 273 assert.deepStrictEqual(got, expected)
274 274
275 275 spec = '23.0'
276 osVersion = 'windows-2019'
276 + osVersion = 'windows-2022'
277 277 expected = '23.0.4'
278 278 got = await setupBeam.getOTPVersion(spec, osVersion)
279 279 assert.deepStrictEqual(got, expected)
@@ -294,7 +294,7 @@ describe('.getOTPVersion(_) - Erlang', () => {
294 294 assert.deepStrictEqual(got, expected)
295 295
296 296 spec = '23.0'
297 osVersion = 'windows-2019'
297 + osVersion = 'windows-2022'
298 298 expected = '23.0.4'
299 299 got = await setupBeam.getOTPVersion(spec, osVersion)
300 300 assert.deepStrictEqual(got, expected)
@@ -625,9 +625,9 @@ describe('.getOTPVersion(_) - Elixir', () => {
625 625 assert.deepStrictEqual(got, expected)
626 626
627 627 before = simulateInput('version-type', 'strict')
628 spec = '1.17'
628 + spec = '1.19'
629 629 otpVersion = 'master'
630 expected = 'v1.17-otp-27'
630 + expected = 'v1.19-otp-28'
631 631 await setupBeam.installOTP(otpVersion)
632 632 got = await setupBeam.getElixirVersion(spec, otpVersion)
633 633 assert.deepStrictEqual(got, expected)
@@ -695,18 +695,18 @@ describe('.getOTPVersion(_) - rebar3', () => {
695 695 let spec
696 696
697 697 it('returns the expected value', async () => {
698 spec = '3.10.x'
699 expected = '3.10.0'
698 + spec = '3.26.x'
699 + expected = '3.26.0'
700 700 got = await setupBeam.getRebar3Version(spec)
701 701 assert.deepStrictEqual(got, expected)
702 702
703 spec = '3.11'
704 expected = '3.11.1'
703 + spec = '3.25'
704 + expected = '3.25.1'
705 705 got = await setupBeam.getRebar3Version(spec)
706 706 assert.deepStrictEqual(got, expected)
707 707
708 spec = '3.10'
709 expected = '3.10.0'
708 + spec = '3.26'
709 + expected = '3.26.0'
710 710 got = await setupBeam.getRebar3Version(spec)
711 711 assert.deepStrictEqual(got, expected)
712 712 })
@@ -972,7 +972,7 @@ describe('.getVersionFromSpec(_)', () => {
972 972 assert.deepStrictEqual(got, expected)
973 973
974 974 spec = 'latest'
975 expected = '3.23.0'
975 + expected = '3.27.0'
976 976 got = setupBeam.getVersionFromSpec(spec, matrix.rebar3)
977 977 assert.deepStrictEqual(got, expected)
978 978 })

Parents: 3985c7c