Compare commits

...

16 Commits

Author SHA1 Message Date
Jose Diaz-Gonzalez
02faf41d0e Release 1.36.9
Some checks failed
tagged-release / tagged-release (push) Has been cancelled
2024-04-04 20:25:35 -04:00
Jose Diaz-Gonzalez
a98d498f2b Merge pull request #204 from dokku/dependabot/docker/mongo-7.0.8
chore(deps): bump mongo from 7.0.7 to 7.0.8
2024-04-04 20:25:24 -04:00
dependabot[bot]
a93f31763a chore(deps): bump mongo from 7.0.7 to 7.0.8
Bumps mongo from 7.0.7 to 7.0.8.

---
updated-dependencies:
- dependency-name: mongo
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-04-04 13:12:39 +00:00
Jose Diaz-Gonzalez
19b766960e Release 1.36.8
Some checks failed
tagged-release / tagged-release (push) Has been cancelled
2024-03-24 20:03:03 -04:00
Jose Diaz-Gonzalez
a2f568ee9f Merge pull request #202 from dokku/dependabot/docker/mongo-7.0.7
chore(deps): bump mongo from 7.0.6 to 7.0.7
2024-03-24 20:02:56 -04:00
dependabot[bot]
21280c5b1a chore(deps): bump mongo from 7.0.6 to 7.0.7
Bumps mongo from 7.0.6 to 7.0.7.

---
updated-dependencies:
- dependency-name: mongo
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-03-19 13:55:21 +00:00
Jose Diaz-Gonzalez
ee12f5064d Release 1.36.7
Some checks failed
tagged-release / tagged-release (push) Has been cancelled
2024-03-06 02:15:38 -05:00
Jose Diaz-Gonzalez
b6da231937 Merge pull request #201 from dokku/dependabot/docker/mongo-7.0.6
chore(deps): bump mongo from 7.0.5 to 7.0.6
2024-03-06 02:13:39 -05:00
dependabot[bot]
3f9cd66dde chore(deps): bump mongo from 7.0.5 to 7.0.6
Bumps mongo from 7.0.5 to 7.0.6.

---
updated-dependencies:
- dependency-name: mongo
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-03-01 13:39:43 +00:00
Jose Diaz-Gonzalez
bc04b423b8 Release 1.36.6
Some checks failed
tagged-release / tagged-release (push) Has been cancelled
2024-01-29 10:10:00 -05:00
Jose Diaz-Gonzalez
d2faf876c6 fix: use correct repository on arm64 ubuntu image 2024-01-29 10:09:17 -05:00
Jose Diaz-Gonzalez
ba5153e16c Release 1.36.5
Some checks failed
tagged-release / tagged-release (push) Has been cancelled
2024-01-29 08:35:48 -05:00
Jose Diaz-Gonzalez
4335963a43 Merge pull request #198 from dokku/dependabot/docker/mongo-7.0.5
chore(deps): bump mongo from 7.0.4 to 7.0.5
2024-01-29 08:35:40 -05:00
dependabot[bot]
dd10b8704e chore(deps): bump mongo from 7.0.4 to 7.0.5
Bumps mongo from 7.0.4 to 7.0.5.

---
updated-dependencies:
- dependency-name: mongo
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-09 13:31:56 +00:00
Jose Diaz-Gonzalez
ead449eb1f Merge pull request #197 from dokku/dependabot/github_actions/actions/upload-artifact-4
chore(deps): bump actions/upload-artifact from 3 to 4
2023-12-19 00:23:58 -05:00
dependabot[bot]
f83d6f1010 chore(deps): bump actions/upload-artifact from 3 to 4
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-12-15 13:15:17 +00:00
5 changed files with 11 additions and 6 deletions

View File

@@ -51,7 +51,7 @@ jobs:
- run: make test
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: failure()
with:
name: tmp/test-results
@@ -93,7 +93,7 @@ jobs:
- run: make test
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: failure()
with:
name: tmp/test-results

View File

@@ -1 +1 @@
FROM mongo:7.0.4
FROM mongo:7.0.8

View File

@@ -1,5 +1,6 @@
HARDWARE = $(shell uname -m)
SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]')
ARCH = $(shell dpkg --print-architecture)
SHFMT_VERSION = 3.0.2
XUNIT_TO_GITHUB_VERSION = 0.3.0
XUNIT_READER_VERSION = 0.1.0
@@ -21,7 +22,11 @@ ifneq ($(shell shellcheck --version >/dev/null 2>&1 ; echo $$?),0)
ifeq ($(SYSTEM_NAME),darwin)
brew install shellcheck
else
sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu jammy-backports main restricted universe multiverse'
ifeq ($(ARCH),arm64)
sudo add-apt-repository 'deb http://ports.ubuntu.com/ubuntu-ports jammy-backports main restricted universe multiverse'
else
sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu jammy-backports main restricted universe multiverse'
endif
sudo rm -rf /var/lib/apt/lists/* && sudo apt-get clean
sudo apt-get update -qq && sudo apt-get install -qq -y shellcheck
endif

View File

@@ -1,6 +1,6 @@
# dokku mongo [![Build Status](https://img.shields.io/github/actions/workflow/status/dokku/dokku-mongo/ci.yml?branch=master&style=flat-square "Build Status")](https://github.com/dokku/dokku-mongo/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 mongo plugin for dokku. Currently defaults to installing [mongo 7.0.4](https://hub.docker.com/_/mongo/).
Official mongo plugin for dokku. Currently defaults to installing [mongo 7.0.8](https://hub.docker.com/_/mongo/).
## Requirements

View File

@@ -1,4 +1,4 @@
[plugin]
description = "dokku mongo service plugin"
version = "1.36.4"
version = "1.36.9"
[plugin.config]