Compare commits

...

11 Commits

Author SHA1 Message Date
Jose Diaz-Gonzalez
3079587e0b Release 1.42.0
Some checks failed
tagged-release / tagged-release (push) Has been cancelled
2025-04-15 04:00:07 -04:00
Jose Diaz-Gonzalez
dfe372bbbd Merge pull request #188 from dokku/dependabot/docker/mysql-9.3.0
chore(deps): bump mysql from 9.2.0 to 9.3.0
2025-04-15 03:57:15 -04:00
dependabot[bot]
d04dc75c81 chore(deps): bump mysql from 9.2.0 to 9.3.0
Bumps mysql from 9.2.0 to 9.3.0.

---
updated-dependencies:
- dependency-name: mysql
  dependency-version: 9.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-04-15 03:37:50 +00:00
Jose Diaz-Gonzalez
42dc05c473 Merge pull request #186 from dokku/maintained-action
ci: use maintained action for creating automated releases
2025-03-13 18:51:02 -05:00
Jose Diaz-Gonzalez
658ed34b64 ci: use maintained action for creating automated releases 2025-03-13 19:46:50 -04:00
Jose Diaz-Gonzalez
900d772398 Release 1.41.2
Some checks failed
tagged-release / tagged-release (push) Has been cancelled
2025-03-09 07:11:56 -04:00
Jose Diaz-Gonzalez
ea120dd613 Merge pull request #185 from dokku/7470-name-argument
docs: ensure --name flag is used in installation docs
2025-03-09 06:05:33 -05:00
Jose Diaz-Gonzalez
7d59d4ee36 docs: ensure --name flag is used in installation docs
Closes dokku/dokku#7470
2025-03-09 07:03:59 -04:00
Jose Diaz-Gonzalez
4ddf27d340 Release 1.41.1
Some checks failed
tagged-release / tagged-release (push) Has been cancelled
2025-02-02 00:29:21 -05:00
Jose Diaz-Gonzalez
6a75d5d509 Merge pull request #184 from dokku/dependabot/docker/mysql-9.2.0
chore(deps): bump mysql from 9.1.0 to 9.2.0
2025-02-01 23:29:07 -06:00
dependabot[bot]
31f737bb09 chore(deps): bump mysql from 9.1.0 to 9.2.0
Bumps mysql from 9.1.0 to 9.2.0.

---
updated-dependencies:
- dependency-name: mysql
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-01-23 03:22:53 +00:00
5 changed files with 10 additions and 9 deletions

View File

@@ -5,7 +5,7 @@ name: "tagged-release"
on: on:
push: push:
tags: tags:
- '*' - "*"
jobs: jobs:
tagged-release: tagged-release:
@@ -13,7 +13,8 @@ jobs:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
- uses: "marvinpinto/action-automatic-releases@v1.2.1" - name: Release
uses: softprops/action-gh-release@v2.2.1
with: with:
repo_token: "${{ secrets.GITHUB_TOKEN }}" generate_release_notes: true
prerelease: false make_latest: "true"

View File

@@ -1 +1 @@
FROM mysql:9.1.0 FROM mysql:9.3.0

View File

@@ -1,6 +1,6 @@
# dokku mysql [![Build Status](https://img.shields.io/github/actions/workflow/status/dokku/dokku-mysql/ci.yml?branch=master&style=flat-square "Build Status")](https://github.com/dokku/dokku-mysql/actions/workflows/ci.yml?query=branch%3Amaster) [![IRC Network](https://img.shields.io/badge/irc-libera-blue.svg?style=flat-square "IRC Libera")](https://webchat.libera.chat/?channels=dokku) # dokku mysql [![Build Status](https://img.shields.io/github/actions/workflow/status/dokku/dokku-mysql/ci.yml?branch=master&style=flat-square "Build Status")](https://github.com/dokku/dokku-mysql/actions/workflows/ci.yml?query=branch%3Amaster) [![IRC Network](https://img.shields.io/badge/irc-libera-blue.svg?style=flat-square "IRC Libera")](https://webchat.libera.chat/?channels=dokku)
Official mysql plugin for dokku. Currently defaults to installing [mysql 9.1.0](https://hub.docker.com/_/mysql/). Official mysql plugin for dokku. Currently defaults to installing [mysql 9.3.0](https://hub.docker.com/_/mysql/).
## Requirements ## Requirements
@@ -11,7 +11,7 @@ Official mysql plugin for dokku. Currently defaults to installing [mysql 9.1.0](
```shell ```shell
# on 0.19.x+ # on 0.19.x+
sudo dokku plugin:install https://github.com/dokku/dokku-mysql.git mysql sudo dokku plugin:install https://github.com/dokku/dokku-mysql.git --name mysql
``` ```
## Commands ## Commands

View File

@@ -110,7 +110,7 @@ def installation_section(service, dokku_version):
"", "",
"```shell", "```shell",
f"# on {dokku_version}", f"# on {dokku_version}",
f"sudo dokku plugin:install https://github.com/dokku/dokku-{service}.git {service}", f"sudo dokku plugin:install https://github.com/dokku/dokku-{service}.git --name {service}",
"```", "```",
] ]
) )

View File

@@ -1,4 +1,4 @@
[plugin] [plugin]
description = "dokku mysql service plugin" description = "dokku mysql service plugin"
version = "1.41.0" version = "1.42.0"
[plugin.config] [plugin.config]