Skip to content

Commit ee4e42c

Browse files
committed
Released 6.3.0.
1 parent d201f5b commit ee4e42c

6 files changed

Lines changed: 91 additions & 19 deletions

File tree

.vscode/launch.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,13 @@
9494
"name": "onepub pub private",
9595
"type": "dart",
9696
"request": "launch",
97-
"program": "bin/onepub.dart",
97+
"program": "/home/bsutton/git/onepub/onepub/bin/onepub.dart",
9898
"args": [
9999
"pub",
100100
"private"
101101
],
102-
"console": "terminal"
102+
"console": "terminal",
103+
"cwd": "/home/bsutton/git/big_pkg_test"
103104
},
104105
{
105106
"name": "opub login",

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 6.3.0
2+
- We now lock down the versions of direct dependencies to avoid upstream
3+
packages causing issues activating the onepub command.
4+
- upgraded to dcli 8.x
5+
- moved from using usage/uuid to directly using the uuid package for token generation when doing bb auth.
6+
- removed unused dependencies.
7+
8+
# 6.2.0
9+
- released to over come the flawed released of a dependency which stopped
10+
onepub from being activated.
11+
112
# 6.1.0
213
- improvements to the onepub pub private command with respect to the messages we output. Better handling of the 'none' publish_to value and fixed the url to the publish doco.
314
- updated the publish url to the actual documentation on publishing a package.

lib/src/version/version.g.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/// GENERATED BY pub_release do not modify.
22
/// Instance of 'Name' version
33
///ignore: omit_obvious_property_types
4-
String packageVersion = '6.1.0';
4+
String packageVersion = '6.3.0';

pubspec.lock-restore.yaml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Auto-generated by `lock` on 2025-10-18T00:42:48.596841ZZ
2+
# Restores original version ranges & sources for direct deps
3+
version: 1
4+
dependencies:
5+
args:
6+
source: hosted
7+
constraint: "^2.5.0"
8+
cli_util:
9+
source: hosted
10+
constraint: "^0.4.2"
11+
dart_console:
12+
source: hosted
13+
constraint: "^4.1.0"
14+
dcli_core:
15+
source: hosted
16+
constraint: "^8.0.0"
17+
dcli_input:
18+
source: hosted
19+
constraint: "^8.0.0"
20+
dcli_terminal:
21+
source: hosted
22+
constraint: "^8.0.0"
23+
path:
24+
source: hosted
25+
constraint: "^1.9.1"
26+
pub_semver:
27+
source: hosted
28+
constraint: "^2.2.0"
29+
pubspec_manager:
30+
source: hosted
31+
constraint: "^3.0.1"
32+
scope:
33+
source: hosted
34+
constraint: "^5.1.0"
35+
settings_yaml:
36+
source: hosted
37+
constraint: "^8.1.0"
38+
stack_trace:
39+
source: hosted
40+
constraint: "^1.12.1"
41+
strings:
42+
source: hosted
43+
constraint: "^4.0.1"
44+
url_builder:
45+
source: hosted
46+
constraint: "2.0.0"
47+
uuid:
48+
source: hosted
49+
constraint: "^4.4.0"
50+
validators2:
51+
source: hosted
52+
constraint: "5.0.0"
53+
yaml:
54+
source: hosted
55+
constraint: "^3.1.3"

pubspec.yaml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
name: onepub
2-
version: 6.2.0
2+
version: 6.3.0
33
homepage: https://onepub.dev
44
documentation: https://docs.onepub.dev
55
description: Command line tools for the OnePub private Dart/Flutter repository.
66
repository: https://github.com/onepub-dev/onepub
77
environment:
88
sdk: '>=3.5.0 <4.0.0'
99
dependencies:
10-
args: ^2.5.0
11-
cli_util: ^0.4.2
12-
dart_console: ^4.1.0
13-
dcli_core: ^8.0.0
14-
dcli_input: ^8.0.0
15-
dcli_terminal: ^8.0.0
16-
path: ^1.9.1
17-
pub_semver: ^2.2.0
18-
pubspec_manager: ^3.0.1
19-
scope: ^5.1.0
20-
settings_yaml: ^8.1.0
21-
stack_trace: ^1.12.1
22-
strings: ^4.0.1
10+
args: 2.7.0
11+
cli_util: 0.4.2
12+
dart_console: 4.1.2
13+
dcli_core: 8.0.0
14+
dcli_input: 8.0.0
15+
dcli_terminal: 8.0.0
16+
path: 1.9.1
17+
pub_semver: 2.2.0
18+
pubspec_manager: 3.0.1
19+
scope: 5.1.0
20+
settings_yaml: 8.3.1
21+
stack_trace: 1.12.1
22+
strings: 4.0.1
2323
url_builder: 2.0.0
24-
uuid: ^4.4.0
24+
uuid: 4.5.1
2525
validators2: 5.0.0
26-
yaml: ^3.1.3
26+
yaml: 3.1.3
2727
dev_dependencies:
2828
dcli: ^8.0.0
2929
lint_hard: ^6.2.1

tool/pre_release_hook/lock.dart

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import 'package:dcli/dcli.dart';
2+
3+
/// Lock the pubspec.yaml file dependency versions so that they
4+
/// will always install the same versions we test against.
5+
void main() => 'dcli lock'.run;

0 commit comments

Comments
 (0)