heroku-bouncer 1.0.2 → 1.0.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -2
- data/CONTRIBUTING.md +46 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8abf3173e55dc522a581314a12116e55e7ad71068f3a2ac77e0ca0852f32c530
|
4
|
+
data.tar.gz: bbb004148de5fe72d21f7051c4675816bbee219f1ca1cc71cf9283689ede9a57
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84d20de61bffbd18674278333123400ffaa3c16f1a147586c00721f0da0b4843f6a311e3117dd432210b514a17c1bc398ae40c12c66a45767e87751664f475da
|
7
|
+
data.tar.gz: fbe409b4bdac9c7c4a5dde0de40d29629d11ce4ec76b86f36ea630029e695f043cb4ae6278434c2dd22c44e17f485401525e2804fd98031187a24635cd82fd7d
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,15 @@
|
|
1
|
-
# 1.0.
|
1
|
+
# 1.0.3
|
2
|
+
|
3
|
+
* #80 Loosen sinatra version constraint, allowing `sinatra >= 3, < 5`. Note: According to [GHSA-hxx2-7vcw-mqr3](https://github.com/advisories/GHSA-hxx2-7vcw-mqr3), all versions prior to Sinatra 4.1.0 are vulnerable to [CVE-2024-21510](https://nvd.nist.gov/vuln/detail/CVE-2024-21510).
|
4
|
+
|
5
|
+
# 1.0.2
|
2
6
|
|
3
|
-
* #73: Avoid vendoring gems
|
4
7
|
* #75: Add explicit dependency on OpenStruct gem
|
8
|
+
* #73: Avoid vendoring gems
|
9
|
+
|
10
|
+
# 1.0.1
|
11
|
+
|
12
|
+
* #72: Avoid vendoring gems
|
5
13
|
|
6
14
|
# 1.0.0
|
7
15
|
|
data/CONTRIBUTING.md
CHANGED
@@ -60,3 +60,49 @@ Make sure the tests pass:
|
|
60
60
|
[fork]: http://help.github.com/fork-a-repo/
|
61
61
|
[branch]: http://learn.github.com/p/branching.html
|
62
62
|
[pr]: http://help.github.com/send-pull-requests/
|
63
|
+
|
64
|
+
## Creating a New Rubygems Release
|
65
|
+
|
66
|
+
These steps assume you are an owner of the gem on Rubygems, you can find the full list of owners [here](https://rubygems.org/gems/heroku-bouncer).
|
67
|
+
|
68
|
+
### 1. Prepare for the release:
|
69
|
+
|
70
|
+
First, ensure all the necessary PRs have been merged and the [Changelog](https://github.com/sharpstone/heroku-bouncer/blob/master/CHANGELOG.md) has been updated with a new section that reflects all of the changes in this release.
|
71
|
+
|
72
|
+
From the main branch, open the [gemspec file](https://github.com/sharpstone/heroku-bouncer/blob/db91a01c602790b043c96356562dcc72149402f8/heroku-bouncer.gemspec#L3), locate the `spec.version = "..."` line then update the version number accordingly (e.g., from 1.0.0 to 1.1.0). Save the gemspec file.
|
73
|
+
|
74
|
+
### 2. Create a Git Release:
|
75
|
+
|
76
|
+
Commit your changes to the repository with `git commit -am "Preparing v1.x.x release"`
|
77
|
+
|
78
|
+
Create the release using the Github CLI [interactive release command](https://cli.github.com/manual/gh_release_create):
|
79
|
+
|
80
|
+
```bash
|
81
|
+
gh release create v1.x.x
|
82
|
+
```
|
83
|
+
|
84
|
+
Selecting these options when prompted:
|
85
|
+
|
86
|
+
```bash
|
87
|
+
? Title (optional): v1.0.3
|
88
|
+
? Release notes: Write using generated notes as template
|
89
|
+
? Is this a prerelease?: No
|
90
|
+
? Submit?: Publish release
|
91
|
+
https://github.com/sharpstone/heroku-bouncer/releases/tag/v1.0.3
|
92
|
+
```
|
93
|
+
|
94
|
+
### 3. Building and Packaging:
|
95
|
+
|
96
|
+
Build the Gem:
|
97
|
+
|
98
|
+
```bash
|
99
|
+
gem build heroku-bouncer.gemspec
|
100
|
+
```
|
101
|
+
|
102
|
+
This will create a .gem file in the same directory.
|
103
|
+
|
104
|
+
3. Publishing to RubyGems.org:
|
105
|
+
Push the Gem:
|
106
|
+
Ensure you have a RubyGems.org account and have signed in with gem signin.
|
107
|
+
Run the command gem push my_gem-1.1.0.gem (replace my_gem-1.1.0.gem with the name of your .gem file).
|
108
|
+
The gem will be uploaded to RubyGems.org.
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: heroku-bouncer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jonathan Dance
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-20 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: faraday
|
@@ -78,7 +78,7 @@ dependencies:
|
|
78
78
|
version: '3.0'
|
79
79
|
- - "<"
|
80
80
|
- !ruby/object:Gem::Version
|
81
|
-
version: '
|
81
|
+
version: '5'
|
82
82
|
type: :runtime
|
83
83
|
prerelease: false
|
84
84
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -88,7 +88,7 @@ dependencies:
|
|
88
88
|
version: '3.0'
|
89
89
|
- - "<"
|
90
90
|
- !ruby/object:Gem::Version
|
91
|
-
version: '
|
91
|
+
version: '5'
|
92
92
|
- !ruby/object:Gem::Dependency
|
93
93
|
name: delorean
|
94
94
|
requirement: !ruby/object:Gem::Requirement
|