[PR #24] [MERGED] Bump github.com/mholt/certmagic from e3e89d1 to fe0876b #155

Closed
opened 2026-02-25 22:31:15 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/evenh/intercert/pull/24
Author: @dependabot-preview[bot]
Created: 4/22/2019
Status: Merged
Merged: 4/26/2019
Merged by: @evenh

Base: masterHead: dependabot/dep/github.com/mholt/certmagic-fe0876b


📝 Commits (6)

  • be21e3f Bump github.com/mholt/certmagic from e3e89d1 to fe0876b
  • 3e8c3dd Remove xenolf/lego imports
  • dc725fb Fix API breakages in mholt/certmagic
  • 967923b Migrate to Go modules
  • 4216cfd Bump protoc 3.6.1 -> 3.7.1
  • 574cd68 Use Go modules in Travis/goreleaser

📊 Changes

18 files changed (+408 additions, -1045 deletions)

View changed files

📝 .goreleaser.yml (+2 -3)
📝 .travis.yml (+3 -3)
Gopkg.lock (+0 -956)
Gopkg.toml (+0 -38)
📝 Makefile (+1 -5)
📝 client/client.go (+1 -1)
📝 client/queue.go (+1 -1)
📝 client/scheduler.go (+1 -1)
📝 client/storage.go (+1 -1)
📝 client/tasks.go (+1 -1)
📝 cmd/cmd.go (+1 -1)
📝 cmd/serve.go (+1 -1)
go.mod (+76 -0)
go.sum (+293 -0)
📝 server/issuer.go (+24 -6)
📝 server/server.go (+1 -1)
server/storage.go (+0 -25)
📝 server/whitelist.go (+1 -1)

📄 Description

Bumps github.com/mholt/certmagic from e3e89d1 to fe0876b.

Commits
  • fe0876b mod: Update go-acme/lego to v2.5.0
  • 8f7a1ca Significant refactoring to improve correctness and flexibility (#39)
  • f1fdb7f Change default KeyType to EC256 (P256) (#37)
  • 1f532f6 readme: Update storage comment to point to wiki (#36)
  • ee1543e use go-acme/lego (#31)
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot ignore this [patch|minor|major] version will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/evenh/intercert/pull/24 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 4/22/2019 **Status:** ✅ Merged **Merged:** 4/26/2019 **Merged by:** [@evenh](https://github.com/evenh) **Base:** `master` ← **Head:** `dependabot/dep/github.com/mholt/certmagic-fe0876b` --- ### 📝 Commits (6) - [`be21e3f`](https://github.com/evenh/intercert/commit/be21e3f2364328d16e2bc2cd03baffa38fb42bd4) Bump github.com/mholt/certmagic from `e3e89d1` to `fe0876b` - [`3e8c3dd`](https://github.com/evenh/intercert/commit/3e8c3ddbdfa633039b6e7b018f12bce049d82b7b) Remove xenolf/lego imports - [`dc725fb`](https://github.com/evenh/intercert/commit/dc725fb33000862c12a94623320952289ba47b92) Fix API breakages in mholt/certmagic - [`967923b`](https://github.com/evenh/intercert/commit/967923b24783da15fea8a46879ac2a28e55caa1c) Migrate to Go modules - [`4216cfd`](https://github.com/evenh/intercert/commit/4216cfdd5464319a972fc36efa43df4a3c6dbc1d) Bump protoc 3.6.1 -> 3.7.1 - [`574cd68`](https://github.com/evenh/intercert/commit/574cd683327ed88cc102a8116f0659b1c619d10e) Use Go modules in Travis/goreleaser ### 📊 Changes **18 files changed** (+408 additions, -1045 deletions) <details> <summary>View changed files</summary> 📝 `.goreleaser.yml` (+2 -3) 📝 `.travis.yml` (+3 -3) ➖ `Gopkg.lock` (+0 -956) ➖ `Gopkg.toml` (+0 -38) 📝 `Makefile` (+1 -5) 📝 `client/client.go` (+1 -1) 📝 `client/queue.go` (+1 -1) 📝 `client/scheduler.go` (+1 -1) 📝 `client/storage.go` (+1 -1) 📝 `client/tasks.go` (+1 -1) 📝 `cmd/cmd.go` (+1 -1) 📝 `cmd/serve.go` (+1 -1) ➕ `go.mod` (+76 -0) ➕ `go.sum` (+293 -0) 📝 `server/issuer.go` (+24 -6) 📝 `server/server.go` (+1 -1) ➖ `server/storage.go` (+0 -25) 📝 `server/whitelist.go` (+1 -1) </details> ### 📄 Description Bumps [github.com/mholt/certmagic](https://github.com/mholt/certmagic) from `e3e89d1` to `fe0876b`. <details> <summary>Commits</summary> - [`fe0876b`](https://github.com/mholt/certmagic/commit/fe0876b1cb304ac2f5e4af78b038f0dd48e13ea4) mod: Update go-acme/lego to v2.5.0 - [`8f7a1ca`](https://github.com/mholt/certmagic/commit/8f7a1caa59089176908e5a95cf642893a94de899) Significant refactoring to improve correctness and flexibility ([#39](https://github-redirect.dependabot.com/mholt/certmagic/issues/39)) - [`f1fdb7f`](https://github.com/mholt/certmagic/commit/f1fdb7fe9cd13ea581d3a781e3612211af137efd) Change default KeyType to EC256 (P256) ([#37](https://github-redirect.dependabot.com/mholt/certmagic/issues/37)) - [`1f532f6`](https://github.com/mholt/certmagic/commit/1f532f6355516f202887410f3b0af1929aa743fc) readme: Update storage comment to point to wiki ([#36](https://github-redirect.dependabot.com/mholt/certmagic/issues/36)) - [`ee1543e`](https://github.com/mholt/certmagic/commit/ee1543e2f234dc5e8eb3c7e76cbafb89398dd455) use go-acme/lego ([#31](https://github-redirect.dependabot.com/mholt/certmagic/issues/31)) - See full diff in [compare view](https://github.com/mholt/certmagic/compare/e3e89d1096d76d61680f8eeb8f67649baa6c54b8...fe0876b1cb304ac2f5e4af78b038f0dd48e13ea4) </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot. </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-25 22:31:15 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/intercert#155
No description provided.