@uphold/prt 1.0.0 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/package.json +9 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [v1.1.3](https://github.com/uphold/prt/releases/tag/v1.1.3) (2026-07-09)
|
|
4
|
+
|
|
5
|
+
- Add automatically generated release notes [\#10](https://github.com/uphold/prt/pull/10) ([risantos](https://github.com/risantos))
|
|
6
|
+
|
|
7
|
+
## [v1.1.2](https://github.com/uphold/prt/releases/tag/v1.1.2) (2026-07-06)
|
|
8
|
+
|
|
9
|
+
- Disable `requireUpstream` in release configuration [\#8](https://github.com/uphold/prt/pull/8) ([risantos](https://github.com/risantos))
|
|
10
|
+
- Release `v1.1.1` [\#7](https://github.com/uphold/prt/pull/7) ([github-actions](https://github.com/apps/github-actions))
|
|
11
|
+
- Fix detached head issue in `release` process [\#5](https://github.com/uphold/prt/pull/5) ([risantos](https://github.com/risantos))
|
|
12
|
+
- Release `v1.1.0` [\#4](https://github.com/uphold/prt/pull/4) ([github-actions](https://github.com/apps/github-actions))
|
|
13
|
+
|
|
14
|
+
## [v1.1.1](https://github.com/uphold/prt/releases/tag/v1.1.1) (2026-07-06)
|
|
15
|
+
|
|
16
|
+
- Fix detached head issue in `release` process [\#5](https://github.com/uphold/prt/pull/5) ([risantos](https://github.com/risantos))
|
|
17
|
+
- Release `v1.1.0` [\#4](https://github.com/uphold/prt/pull/4) ([github-actions](https://github.com/apps/github-actions))
|
|
18
|
+
|
|
19
|
+
## [v1.1.0](https://github.com/uphold/prt/releases/tag/v1.1.0) (2026-07-06)
|
|
20
|
+
|
|
21
|
+
- Fix git authorization for `release-it` [\#3](https://github.com/uphold/prt/pull/3) ([risantos](https://github.com/risantos))
|
|
22
|
+
- Add release automation with `release-it` and 2-step workflows [\#2](https://github.com/uphold/prt/pull/2) ([risantos](https://github.com/risantos))
|
|
23
|
+
- Add initial npm package setup [\#1](https://github.com/uphold/prt/pull/1) ([fixe](https://github.com/fixe))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uphold/prt",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "PRT - Public Release Test - GitHub and NPM release test repository",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -20,5 +20,12 @@
|
|
|
20
20
|
"bugs": {
|
|
21
21
|
"url": "https://github.com/uphold/prt/issues"
|
|
22
22
|
},
|
|
23
|
-
"
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=24"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/uphold/prt#readme",
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@uphold/github-changelog-generator": "^4.0.2",
|
|
29
|
+
"release-it": "^20.2.1"
|
|
30
|
+
}
|
|
24
31
|
}
|