Skip to content

Commit

Permalink
Merge branch 'main' into follow_logs
Browse files Browse the repository at this point in the history
* main: (335 commits)
  chore: reduce concurrent builds (testcontainers#702)
  chore: add mysql example (testcontainers#700)
  chore(deps): bump google.golang.org/api from 0.104.0 to 0.105.0 (testcontainers#699)
  chore(deps): bump google.golang.org/api in /examples/firestore (testcontainers#683)
  chore(deps): bump cloud.google.com/go/spanner in /examples/spanner (testcontainers#688)
  chore(deps): bump google.golang.org/api in /examples/pubsub (testcontainers#685)
  chore(deps): bump google.golang.org/api in /examples/spanner (testcontainers#684)
  chore(deps): bump google.golang.org/grpc in /examples/firestore (testcontainers#686)
  chore(deps): bump google.golang.org/api in /examples/bigtable (testcontainers#680)
  chore(deps): bump google.golang.org/api in /examples/datastore (testcontainers#678)
  chore(deps): bump golang.org/x/text from 0.3.7 to 0.5.0 (testcontainers#660)
  chore(deps): bump github.com/magiconair/properties from 1.8.6 to 1.8.7 (testcontainers#677)
  chore: postgres example (testcontainers#674)
  Add bigtable example (testcontainers#676)
  chore(deps): bump github.com/containerd/containerd from 1.6.10 to 1.6.12 (testcontainers#675)
  chore: run go mod tidy in examples (testcontainers#672)
  Improve datastore, firestore, pubsub and spanner tests (testcontainers#670)
  chore: group dependabot updates (testcontainers#668)
  chore: update mkdocs format to go-yaml v3 (testcontainers#667)
  chore: generate dependabot configs for examples (testcontainers#654)
  ...
  • Loading branch information
mdelapenya committed Dec 21, 2022
2 parents 65c2409 + e9fa657 commit bcdcbd8
Show file tree
Hide file tree
Showing 268 changed files with 30,172 additions and 2,141 deletions.
6 changes: 6 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
@@ -0,0 +1,6 @@
# Each line is a file pattern followed by one or more owners.

# These owners will be the default reviewers for everything in
# the repo.

* @testcontainers/go-team
27 changes: 0 additions & 27 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

88 changes: 88 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,88 @@
name: Bug report
description: File a bug report
title: "[Bug]: "
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report! Before submitting a `bug`, please make sure there is no existing issue for the one you encountered.
- type: input
id: tc-version
attributes:
label: Testcontainers version
description: Which Testcontainers version are you using?
placeholder: ex. 0.13.0
validations:
required: true
- type: dropdown
id: latest-version
attributes:
label: Using the latest Testcontainers version?
description: If you are not using the latest version, can you update your project and try to reproduce the issue? Is it still happening?
options:
- 'Yes'
- 'No'
validations:
required: true
- type: input
id: host-os
attributes:
label: Host OS
description: Which Operating System are you using?
placeholder: e.g. Linux, Windows
validations:
required: true
- type: input
id: host-arch
attributes:
label: Host arch
description: Which architecture are you using?
placeholder: e.g. x86, ARM
validations:
required: true
- type: input
id: go-version
attributes:
label: Go version
description: Which Go version are you using?
placeholder: e.g. 1.18
validations:
required: true
- type: textarea
id: docker-version
attributes:
label: Docker version
description: Please run `docker version` and copy and paste the output into this field.
render: shell
validations:
required: true
- type: textarea
id: docker-info
attributes:
label: Docker info
description: Please run `docker info` and copy and paste the output into this field.
render: shell
validations:
required: true
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Provide the context and the expected result.
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. The content will be automatically formatted as code, so no need for backticks.
render: shell
- type: textarea
id: additional-information
attributes:
label: Additional information
description: |
Any links or references to have more context about the issue.
Tip: You can attach a minimal sample project to reproduce the issue or provide further log files by clicking into this area to focus it and then dragging files in.
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: Need help?
url: https://slack.testcontainers.org/
about: Visit our slack channel.
- name: Have a question or want to drive a Community conversation?
url: https://github.com/testcontainers/testcontainers-go/discussions/
about: Visit our Discussions page.
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/enhancement.yml
@@ -0,0 +1,16 @@
name: Enhancement
description: Suggest an enhancement
title: "[Enhancement]: "
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
Before submitting an `enhancement`, please make sure there is no existing enhancement for the one you are requesting. If so, please provide the following information:
- type: textarea
id: proposal
attributes:
label: Proposal
description: What should be improved? What are the limitations of the current implications that would be solved by the proposal?
validations:
required: true
46 changes: 46 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.yml
@@ -0,0 +1,46 @@
name: Feature
description: Suggest a new feature
title: "[Feature]: "
labels: ["feature"]
body:
- type: markdown
attributes:
value: |
Before submitting a `feature`, please make sure there is no existing feature for the one you are requesting. If so, please provide the following information:
- type: textarea
id: problem
attributes:
label: Problem
description: Is this feature related to a problem? Please describe it.
validations:
required: true
- type: textarea
id: solution
attributes:
label: Solution
description: What's the proposed solution for this feature?
validations:
required: true
- type: textarea
id: benefit
attributes:
label: Benefit
description: What's the benefit of adding this feature to the project?
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: Alternatives
description: Are there other alternatives? Please describe them.
validations:
required: true
- type: dropdown
id: contribute
attributes:
label: Would you like to help contributing this feature?
options:
- 'Yes'
- 'No'
validations:
required: true
40 changes: 40 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,40 @@
<!-- Type of change
Please label this PR with one of the existing labels, depending on the scope of your change
-->

## What does this PR do?

<!-- Mandatory
Explain here the changes you made on the PR. Please explain the WHAT: patterns used, algorithms implemented, design architecture, etc.
-->

## Why is it important?

<!-- Mandatory
Explain here the WHY, or the rationale/motivation for the changes.
-->

## Related issues

<!-- Recommended
Link related issues below. Insert the issue link or reference after the word "Closes" if merging this should automatically close it.
- Closes #123
- Relates #123
- Requires #123
- Supersedes #123
-->
-

<!-- Recommended
## How to test this PR
Explain here how this PR will be tested by the reviewer: commands, dependencies, steps, etc.
-->


<!-- Optional
## Follow-ups
Add here any thought that you consider could be identified as an actionable step once this PR is merged.
-->
90 changes: 84 additions & 6 deletions .github/dependabot.yml
@@ -1,8 +1,86 @@
version: 2
updates:
- package-ecosystem: gomod
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 3
rebase-strategy: disabled
- package-ecosystem: gomod
directory: /
schedule:
interval: daily
open-pull-requests-limit: 3
rebase-strategy: disabled
- package-ecosystem: gomod
directory: /e2e
schedule:
interval: daily
open-pull-requests-limit: 3
rebase-strategy: disabled
- package-ecosystem: gomod
directory: /examples/bigtable
schedule:
interval: daily
open-pull-requests-limit: 3
rebase-strategy: disabled
- package-ecosystem: gomod
directory: /examples/cockroachdb
schedule:
interval: daily
open-pull-requests-limit: 3
rebase-strategy: disabled
- package-ecosystem: gomod
directory: /examples/datastore
schedule:
interval: daily
open-pull-requests-limit: 3
rebase-strategy: disabled
- package-ecosystem: gomod
directory: /examples/firestore
schedule:
interval: daily
open-pull-requests-limit: 3
rebase-strategy: disabled
- package-ecosystem: gomod
directory: /examples/mysql
schedule:
interval: daily
open-pull-requests-limit: 3
rebase-strategy: disabled
- package-ecosystem: gomod
directory: /examples/nginx
schedule:
interval: daily
open-pull-requests-limit: 3
rebase-strategy: disabled
- package-ecosystem: gomod
directory: /examples/postgres
schedule:
interval: daily
open-pull-requests-limit: 3
rebase-strategy: disabled
- package-ecosystem: gomod
directory: /examples/pubsub
schedule:
interval: daily
open-pull-requests-limit: 3
rebase-strategy: disabled
- package-ecosystem: gomod
directory: /examples/pulsar
schedule:
interval: daily
open-pull-requests-limit: 3
rebase-strategy: disabled
- package-ecosystem: gomod
directory: /examples/redis
schedule:
interval: daily
open-pull-requests-limit: 3
rebase-strategy: disabled
- package-ecosystem: gomod
directory: /examples/spanner
schedule:
interval: daily
open-pull-requests-limit: 3
rebase-strategy: disabled
- package-ecosystem: gomod
directory: /examples/toxiproxy
schedule:
interval: daily
open-pull-requests-limit: 3
rebase-strategy: disabled
21 changes: 13 additions & 8 deletions .github/release-drafter.yml
Expand Up @@ -5,16 +5,21 @@ template: |
$CHANGES
categories:
- title: 🚀 Features
label: type/feature
- title: BC Break
label: type/bc-break
labels:
- 'enhancement'
- 'feature'
- title: ⚠️ Breaking Changes
labels:
- 'breaking change'
- title: 🐛 Bug Fixes
label: type/bug
labels:
- 'bug'
- title: 📖 Documentation
label: type/docs
labels:
- 'documentation'
- title: 🧹 Housekeeping
labels:
- type/housekeeping
- type/test-improvement
- 'chore'
- 'test flakiness'
- title: 📦 Dependency updates
label: dependencies
label: 'dependencies'

0 comments on commit bcdcbd8

Please sign in to comment.