Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates #2

Merged
merged 20 commits into from
Aug 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .formatter.exs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Used by "mix format"
[
inputs: ["mix.exs", "{config,lib,test}/**/*.{ex,exs}"]
line_length: 120,
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"]
]
11 changes: 11 additions & 0 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:

jobs:
test:
uses: mtrudel/elixir-ci-actions/.github/workflows/test.yml@main
lint:
uses: mtrudel/elixir-ci-actions/.github/workflows/lint.yml@main
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -22,4 +22,6 @@ erl_crash.dump
# Ignore package tarball (built via "mix hex.build").
ex_aws_code_pipeline-*.tar

/.elixir_ls
/.elixir_ls

.DS_Store
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
v2.1.0
------
#### Enhancements
- Use Github Workflows to test with multiple Elixir versions, credo, dialyzer
- Update dependencies
- Provide types that allow either Keyword lists or Map to be passed for optional
data for API functions.
- Fill in missing API functions
12 changes: 2 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ The package can be installed by adding ex_aws_code_pipeline to your list of depe
def deps do
[
{:ex_aws, "~> 2.0"},
{:ex_aws_code_pipeline, "~> 2.0"},
{:ex_aws_code_pipeline, "~> 2.1"},
{:poison, "~> 3.0"},
{:hackney, "~> 1.9"},
]
@@ -25,12 +25,4 @@ end

## License

The MIT License (MIT)

Copyright (c) 2017

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
[License](LICENSE)
31 changes: 1 addition & 30 deletions config/config.exs
Original file line number Diff line number Diff line change
@@ -1,30 +1 @@
# This file is responsible for configuring your application
# and its dependencies with the aid of the Mix.Config module.
use Mix.Config

# This configuration is loaded before any dependency and is restricted
# to this project. If another project depends on this project, this
# file won't be loaded nor affect the parent project. For this reason,
# if you want to provide default values for your application for
# 3rd-party users, it should be done in your "mix.exs" file.

# You can configure your application as:
#
# config :ex_aws_code_pipeline, key: :value
#
# and access this configuration in your application as:
#
# Application.get_env(:ex_aws_code_pipeline, :key)
#
# You can also configure a 3rd-party app:
#
# config :logger, level: :info
#

# It is also possible to import configuration files, relative to this
# directory. For example, you can emulate configuration per environment
# by uncommenting the line below and defining dev.exs, test.exs and such.
# Configuration from the imported file will override the ones defined
# here (which is why it is important to import them last).
#
# import_config "#{Mix.env}.exs"
import Mix.Config
4,115 changes: 3,408 additions & 707 deletions lib/ex_aws/code_pipeline.ex

Large diffs are not rendered by default.

237 changes: 237 additions & 0 deletions lib/ex_aws/utils.ex
Original file line number Diff line number Diff line change
@@ -0,0 +1,237 @@
defmodule ExAws.CodePipeline.Utils do
@moduledoc """
Helper utility functions
"""

# There are keys that are encountered that have special rules for capitalizing
# for subkeys found in them.
@camelize_subkeys %{}
@camelize_rules %{
subkeys: @camelize_subkeys,
default: :lower,
keys: %{s3_bucket: :upper, s3_object_key: :upper}
}

@typedoc """
Approach to camelization
- upper - all words are upper-cased
- lower - the first word is lower cased and the remaining words are upper-cased
## Examples
<!-- tabs-open -->
### :upper
```
iex> camelize_rules = %{default: :upper}
iex> ExAws.CodePipeline.Utils.camelize(:test_things, camelize_rules)
"TestThings"
iex> camelize_rules = %{default: :upper}
iex> ExAws.CodePipeline.Utils.camelize(:abc, camelize_rules)
"Abc"
iex> camelize_rules = %{default: :upper}
iex> ExAws.CodePipeline.Utils.camelize("test-a-string", camelize_rules)
"TestAString"
```
### :lower
```
iex> camelize_rules = %{default: :lower}
iex> ExAws.CodePipeline.Utils.camelize(:test_things, camelize_rules)
"testThings"
iex> camelize_rules = %{default: :lower}
iex> ExAws.CodePipeline.Utils.camelize(:abc, camelize_rules)
"abc"
iex> camelize_rules = %{default: :lower}
iex> ExAws.CodePipeline.Utils.camelize("test-a-string", camelize_rules)
"testAString"
```
<!-- tabs-close -->
"""
@type camelization() :: :upper | :lower

@typedoc """
The camelize, camelize_list, and camelize_map take an argument that is
a data structure providing rules for capitalization.
- subkeys - this provides a map that indicates how keys found under this
particular key should be camelized
- keys - this provides a map that indicate how particular keys should be
camelized
- default - indicates whether `:upper` or `:lower` is used by default
"""
@type camelize_rules() :: %{
optional(:subkeys) => %{optional(atom()) => camelization()},
optional(:keys) => %{optional(atom()) => camelization()},
required(:default) => camelization()
}

@doc """
Return the default camelize rules
A caller can override this by creating a `t:camelize_rules/0` and passing
it into functions instead of the default.
"""
@spec camelize_rules() :: camelize_rules()
def camelize_rules, do: @camelize_rules

@spec camelize(atom() | binary(), camelize_rules()) :: binary()
@doc """
Camelize an atom or string value
This works as expected if the val uses an underscore or
hyphen to separate words. This only works for atoms and
strings. Passing another value type (integer, list, map)
will raise exception.
The regex used to split a String into words is: `~r/(?:^|[-_])|(?=[A-Z])/`
## Example
iex> ExAws.CodePipeline.Utils.camelize(:test_val)
"testVal"
iex> ExAws.CodePipeline.Utils.camelize(:"test_val")
"testVal"
iex> ExAws.CodePipeline.Utils.camelize(:"abc-def-a123")
"abcDefA123"
iex> ExAws.CodePipeline.Utils.camelize(:A_test_of_initial_cap)
"aTestOfInitialCap"
"""
def camelize(val, camelize_rules \\ @camelize_rules) do
if is_atom(val) do
camelization = camelization_for_val(val, camelize_rules)
val |> to_string() |> string_camelize(%{camelize_rules | default: camelization})
else
val
end
end

def string_camelize(val, camelize_rules) when is_binary(val) do
~r/(?:^|[-_])|(?=[A-Z])/
|> Regex.split(val, trim: true)
|> camelize_split_string(camelize_rules.default)
|> Enum.join()
end

@doc """
Camelize keys, including traversing values that are also Maps.
The caller can pass in an argument to indicate whether the first letter of a key for the map are
downcased or capitalized.
Keys should be atoms and follow the rules listed for the `camelize/2` function.
## Example
iex> val = %{abc_def: 123, another_val: "val2"}
iex> ExAws.CodePipeline.Utils.camelize_map(val)
%{"abcDef" => 123, "anotherVal" => "val2"}
iex> val = %{abc_def: 123, another_val: %{embed_value: "val2"}}
iex> ExAws.CodePipeline.Utils.camelize_map(val)
%{"abcDef" => 123, "anotherVal" => %{"embedValue" => "val2"}}
iex> val = %{abc_def: 123, another_val: %{embed_value: "val2"}}
iex> ExAws.CodePipeline.Utils.camelize_map(val, %{subkeys: %{}, keys: %{}, default: :upper})
%{"AbcDef" => 123, "AnotherVal" => %{"EmbedValue" => "val2"}}
"""
def camelize_map(val, camelize_rules \\ @camelize_rules)

def camelize_map(a_map, camelize_rules) when is_map(a_map) do
for {key, val} <- a_map, into: %{} do
camelized_key = camelize(key, camelize_rules)
subkey_capitalization = Map.get(camelize_rules.subkeys, key, camelize_rules.keys)
{camelized_key, camelize_map(val, %{camelize_rules | keys: subkey_capitalization})}
end
end

def camelize_map(a_list, camelize_rules) when is_list(a_list) do
Enum.map(a_list, &camelize_map(&1, camelize_rules))
end

def camelize_map(val, _camelize_rules), do: val

@doc """
If val is a Keyword then convert to a Map, else return val.
This function works recursively. If you have a Keyword list where
the value for the key is a keyword then the val is converted to
a Map as well.
## Examples
iex> ExAws.CodePipeline.Utils.keyword_to_map([{:a, 7}, {:b, "abc"}])
%{a: 7, b: "abc"}
iex> ExAws.CodePipeline.Utils.keyword_to_map(%{a: 7, b: %{c: "abc"}})
%{a: 7, b: %{c: "abc"}}
iex> ExAws.CodePipeline.Utils.keyword_to_map([1, 2, 3])
[1, 2, 3]
iex> ExAws.CodePipeline.Utils.keyword_to_map[test: [inner: "abc"]]
%{test: %{inner: "abc"}}
"""
def keyword_to_map(val) do
cond do
val == [] ->
[]

Keyword.keyword?(val) ->
Enum.map(val, fn {k, v} ->
{k, keyword_to_map(v)}
end)
|> Map.new()

is_list(val) ->
Enum.map(val, &keyword_to_map/1)

is_map(val) ->
Enum.map(val, fn {k, v} -> {k, keyword_to_map(v)} end) |> Map.new()

true ->
val
end
end

defp camelization_for_val(val, %{keys: keys, default: default}) do
Map.get(keys, val, default)
end

defp camelization_for_val(_val, %{default: default}), do: default

# Camelize a word that has been split into parts
#
# The caller can pass in an argument to indicate whether the first letter of the first element in
# the list is downcased or capitalized. The remainder elements are always capitalized.
#
# ## Examples
#
# iex> ExAws.CodePipeline.Utils.camelize_split_string([], :lower)
# []
#
# iex> ExAws.CodePipeline.Utils.camelize_split_string(["a", "cat"], :lower)
# ["a", "Cat"]
#
# iex> ExAws.CodePipeline.Utils.camelize_split_string(["a", "cat"], :upper)
# ["A", "Cat"]
defp camelize_split_string([], _), do: []

defp camelize_split_string([h | t], :lower) do
[String.downcase(h)] ++ camelize_split_string(t, :upper)
end

defp camelize_split_string([h | t], :upper) do
[String.capitalize(h)] ++ camelize_split_string(t, :upper)
end
end
35 changes: 21 additions & 14 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,24 +1,22 @@
defmodule ExAwsCodePipeline.MixProject do
use Mix.Project

@version "2.0.0"
@source_url "https://github.com/fmcgeough/ex_aws_code_pipeline"
@version "2.1.0"

def project do
[
app: :ex_aws_code_pipeline,
version: @version,
elixir: "~> 1.4",
start_permanent: Mix.env() == :prod,
package: package(),
description: "AWS Code Pipeline service for ex_aws",
deps: deps(),
elixirc_paths: elixirc_paths(Mix.env()),
source_url: "https://github.com/fmcgeough/ex_aws_code_pipeline",
homepage_url: "https://github.com/fmcgeough/ex_aws_code_pipeline",
docs: [
main: "readme",
extras: ["README.md"],
source_ref: "v#{@version}"
]
source_url: @source_url,
homepage_url: @source_url,
package: package(),
docs: docs()
]
end

@@ -35,21 +33,30 @@ defmodule ExAwsCodePipeline.MixProject do
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:sweet_xml, "~> 0.6", optional: true},
{:hackney, "1.6.3 or 1.6.5 or 1.7.1 or 1.8.6 or ~> 1.9", only: [:dev, :test]},
{:poison, ">= 1.2.0", optional: true},
{:ex_doc, "~> 0.19.2", only: [:dev, :test]},
{:ex_aws, "~> 2.0"},
{:dialyxir, "~> 0.5", only: [:dev]}
{:ex_doc, "~> 0.34.2", only: [:dev, :test], runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4.3", only: [:dev, :test], runtime: false}
]
end

defp package do
[
description: "AWS Code Pipeline service for ex_aws",
maintainers: ["Frank McGeough"],
licenses: ["MIT"],
links: %{github: "https://github.com/fmcgeough/ex_aws_code_pipeline"}
links: %{"GitHub" => @source_url}
]
end

defp docs do
[
name: "ExAws.CodeDeploy",
canonical: "http://hexdocs.pm/ex_aws_code_pipeline",
source_url: @source_url,
main: "readme",
extras: ["README.md", "CHANGELOG.md": [title: "Changelog"], LICENSE: [title: "License"]]
]
end
end
41 changes: 24 additions & 17 deletions mix.lock
Original file line number Diff line number Diff line change
@@ -1,19 +1,26 @@
%{
"certifi": {:hex, :certifi, "2.0.0", "a0c0e475107135f76b8c1d5bc7efb33cd3815cb3cf3dea7aefdd174dabead064", [:rebar3], [], "hexpm"},
"dialyxir": {:hex, :dialyxir, "0.5.1", "b331b091720fd93e878137add264bac4f644e1ddae07a70bf7062c7862c4b952", [:mix], [], "hexpm"},
"earmark": {:hex, :earmark, "1.3.1", "73812f447f7a42358d3ba79283cfa3075a7580a3a2ed457616d6517ac3738cb9", [:mix], [], "hexpm"},
"ex_aws": {:hex, :ex_aws, "2.0.2", "8df2f96f58624a399abe5a0ce26db648ee848aca6393b9c65c939ece9ac07bfa", [:mix], [{:configparser_ex, "~> 2.0", [hex: :configparser_ex, repo: "hexpm", optional: true]}, {:hackney, "1.6.3 or 1.6.5 or 1.7.1 or 1.8.6 or ~> 1.9", [hex: :hackney, repo: "hexpm", optional: true]}, {:jsx, "~> 2.8", [hex: :jsx, repo: "hexpm", optional: true]}, {:poison, ">= 1.2.0", [hex: :poison, repo: "hexpm", optional: true]}, {:sweet_xml, "~> 0.6", [hex: :sweet_xml, repo: "hexpm", optional: true]}, {:xml_builder, "~> 0.1.0", [hex: :xml_builder, repo: "hexpm", optional: true]}], "hexpm"},
"ex_doc": {:hex, :ex_doc, "0.19.2", "6f4081ccd9ed081b6dc0bd5af97a41e87f5554de469e7d76025fba535180565f", [:mix], [{:earmark, "~> 1.2", [hex: :earmark, repo: "hexpm", optional: false]}, {:makeup_elixir, "~> 0.10", [hex: :makeup_elixir, repo: "hexpm", optional: false]}], "hexpm"},
"hackney": {:hex, :hackney, "1.11.0", "4951ee019df102492dabba66a09e305f61919a8a183a7860236c0fde586134b6", [:rebar3], [{:certifi, "2.0.0", [hex: :certifi, repo: "hexpm", optional: false]}, {:idna, "5.1.0", [hex: :idna, repo: "hexpm", optional: false]}, {:metrics, "1.0.1", [hex: :metrics, repo: "hexpm", optional: false]}, {:mimerl, "1.0.2", [hex: :mimerl, repo: "hexpm", optional: false]}, {:ssl_verify_fun, "1.1.1", [hex: :ssl_verify_fun, repo: "hexpm", optional: false]}], "hexpm"},
"idna": {:hex, :idna, "5.1.0", "d72b4effeb324ad5da3cab1767cb16b17939004e789d8c0ad5b70f3cea20c89a", [:rebar3], [{:unicode_util_compat, "0.3.1", [hex: :unicode_util_compat, repo: "hexpm", optional: false]}], "hexpm"},
"jsx": {:hex, :jsx, "2.9.0", "d2f6e5f069c00266cad52fb15d87c428579ea4d7d73a33669e12679e203329dd", [:mix, :rebar3], [], "hexpm"},
"makeup": {:hex, :makeup, "0.8.0", "9cf32aea71c7fe0a4b2e9246c2c4978f9070257e5c9ce6d4a28ec450a839b55f", [:mix], [{:nimble_parsec, "~> 0.5.0", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm"},
"makeup_elixir": {:hex, :makeup_elixir, "0.13.0", "be7a477997dcac2e48a9d695ec730b2d22418292675c75aa2d34ba0909dcdeda", [:mix], [{:makeup, "~> 0.8", [hex: :makeup, repo: "hexpm", optional: false]}], "hexpm"},
"metrics": {:hex, :metrics, "1.0.1", "25f094dea2cda98213cecc3aeff09e940299d950904393b2a29d191c346a8486", [:rebar3], [], "hexpm"},
"mimerl": {:hex, :mimerl, "1.0.2", "993f9b0e084083405ed8252b99460c4f0563e41729ab42d9074fd5e52439be88", [:rebar3], [], "hexpm"},
"nimble_parsec": {:hex, :nimble_parsec, "0.5.0", "90e2eca3d0266e5c53f8fbe0079694740b9c91b6747f2b7e3c5d21966bba8300", [:mix], [], "hexpm"},
"poison": {:hex, :poison, "3.1.0", "d9eb636610e096f86f25d9a46f35a9facac35609a7591b3be3326e99a0484665", [:mix], [], "hexpm"},
"ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.1", "28a4d65b7f59893bc2c7de786dec1e1555bd742d336043fe644ae956c3497fbe", [:make, :rebar], [], "hexpm"},
"sweet_xml": {:hex, :sweet_xml, "0.6.5", "dd9cde443212b505d1b5f9758feb2000e66a14d3c449f04c572f3048c66e6697", [:mix], [], "hexpm"},
"unicode_util_compat": {:hex, :unicode_util_compat, "0.3.1", "a1f612a7b512638634a603c8f401892afbf99b8ce93a45041f8aaca99cadb85e", [:rebar3], [], "hexpm"},
"bunt": {:hex, :bunt, "1.0.0", "081c2c665f086849e6d57900292b3a161727ab40431219529f13c4ddcf3e7a44", [:mix], [], "hexpm", "dc5f86aa08a5f6fa6b8096f0735c4e76d54ae5c9fa2c143e5a1fc7c1cd9bb6b5"},
"certifi": {:hex, :certifi, "2.12.0", "2d1cca2ec95f59643862af91f001478c9863c2ac9cb6e2f89780bfd8de987329", [:rebar3], [], "hexpm", "ee68d85df22e554040cdb4be100f33873ac6051387baf6a8f6ce82272340ff1c"},
"credo": {:hex, :credo, "1.7.7", "771445037228f763f9b2afd612b6aa2fd8e28432a95dbbc60d8e03ce71ba4446", [:mix], [{:bunt, "~> 0.2.1 or ~> 1.0", [hex: :bunt, repo: "hexpm", optional: false]}, {:file_system, "~> 0.2 or ~> 1.0", [hex: :file_system, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "8bc87496c9aaacdc3f90f01b7b0582467b69b4bd2441fe8aae3109d843cc2f2e"},
"dialyxir": {:hex, :dialyxir, "1.4.3", "edd0124f358f0b9e95bfe53a9fcf806d615d8f838e2202a9f430d59566b6b53b", [:mix], [{:erlex, ">= 0.2.6", [hex: :erlex, repo: "hexpm", optional: false]}], "hexpm", "bf2cfb75cd5c5006bec30141b131663299c661a864ec7fbbc72dfa557487a986"},
"earmark_parser": {:hex, :earmark_parser, "1.4.41", "ab34711c9dc6212dda44fcd20ecb87ac3f3fce6f0ca2f28d4a00e4154f8cd599", [:mix], [], "hexpm", "a81a04c7e34b6617c2792e291b5a2e57ab316365c2644ddc553bb9ed863ebefa"},
"erlex": {:hex, :erlex, "0.2.7", "810e8725f96ab74d17aac676e748627a07bc87eb950d2b83acd29dc047a30595", [:mix], [], "hexpm", "3ed95f79d1a844c3f6bf0cea61e0d5612a42ce56da9c03f01df538685365efb0"},
"ex_aws": {:hex, :ex_aws, "2.5.4", "86c5bb870a49e0ab6f5aa5dd58cf505f09d2624ebe17530db3c1b61c88a673af", [:mix], [{:configparser_ex, "~> 4.0", [hex: :configparser_ex, repo: "hexpm", optional: true]}, {:hackney, "~> 1.16", [hex: :hackney, repo: "hexpm", optional: true]}, {:jason, "~> 1.1", [hex: :jason, repo: "hexpm", optional: true]}, {:jsx, "~> 2.8 or ~> 3.0", [hex: :jsx, repo: "hexpm", optional: true]}, {:mime, "~> 1.2 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:sweet_xml, "~> 0.7", [hex: :sweet_xml, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4.3 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "e82bd0091bb9a5bb190139599f922ff3fc7aebcca4374d65c99c4e23aa6d1625"},
"ex_doc": {:hex, :ex_doc, "0.34.2", "13eedf3844ccdce25cfd837b99bea9ad92c4e511233199440488d217c92571e8", [:mix], [{:earmark_parser, "~> 1.4.39", [hex: :earmark_parser, repo: "hexpm", optional: false]}, {:makeup_c, ">= 0.1.0", [hex: :makeup_c, repo: "hexpm", optional: true]}, {:makeup_elixir, "~> 0.14 or ~> 1.0", [hex: :makeup_elixir, repo: "hexpm", optional: false]}, {:makeup_erlang, "~> 0.1 or ~> 1.0", [hex: :makeup_erlang, repo: "hexpm", optional: false]}, {:makeup_html, ">= 0.1.0", [hex: :makeup_html, repo: "hexpm", optional: true]}], "hexpm", "5ce5f16b41208a50106afed3de6a2ed34f4acfd65715b82a0b84b49d995f95c1"},
"file_system": {:hex, :file_system, "1.0.0", "b689cc7dcee665f774de94b5a832e578bd7963c8e637ef940cd44327db7de2cd", [:mix], [], "hexpm", "6752092d66aec5a10e662aefeed8ddb9531d79db0bc145bb8c40325ca1d8536d"},
"hackney": {:hex, :hackney, "1.20.1", "8d97aec62ddddd757d128bfd1df6c5861093419f8f7a4223823537bad5d064e2", [:rebar3], [{:certifi, "~> 2.12.0", [hex: :certifi, repo: "hexpm", optional: false]}, {:idna, "~> 6.1.0", [hex: :idna, repo: "hexpm", optional: false]}, {:metrics, "~> 1.0.0", [hex: :metrics, repo: "hexpm", optional: false]}, {:mimerl, "~> 1.1", [hex: :mimerl, repo: "hexpm", optional: false]}, {:parse_trans, "3.4.1", [hex: :parse_trans, repo: "hexpm", optional: false]}, {:ssl_verify_fun, "~> 1.1.0", [hex: :ssl_verify_fun, repo: "hexpm", optional: false]}, {:unicode_util_compat, "~> 0.7.0", [hex: :unicode_util_compat, repo: "hexpm", optional: false]}], "hexpm", "fe9094e5f1a2a2c0a7d10918fee36bfec0ec2a979994cff8cfe8058cd9af38e3"},
"idna": {:hex, :idna, "6.1.1", "8a63070e9f7d0c62eb9d9fcb360a7de382448200fbbd1b106cc96d3d8099df8d", [:rebar3], [{:unicode_util_compat, "~> 0.7.0", [hex: :unicode_util_compat, repo: "hexpm", optional: false]}], "hexpm", "92376eb7894412ed19ac475e4a86f7b413c1b9fbb5bd16dccd57934157944cea"},
"jason": {:hex, :jason, "1.4.4", "b9226785a9aa77b6857ca22832cffa5d5011a667207eb2a0ad56adb5db443b8a", [:mix], [{:decimal, "~> 1.0 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm", "c5eb0cab91f094599f94d55bc63409236a8ec69a21a67814529e8d5f6cc90b3b"},
"makeup": {:hex, :makeup, "1.1.2", "9ba8837913bdf757787e71c1581c21f9d2455f4dd04cfca785c70bbfff1a76a3", [:mix], [{:nimble_parsec, "~> 1.2.2 or ~> 1.3", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "cce1566b81fbcbd21eca8ffe808f33b221f9eee2cbc7a1706fc3da9ff18e6cac"},
"makeup_elixir": {:hex, :makeup_elixir, "0.16.2", "627e84b8e8bf22e60a2579dad15067c755531fea049ae26ef1020cad58fe9578", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}, {:nimble_parsec, "~> 1.2.3 or ~> 1.3", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm", "41193978704763f6bbe6cc2758b84909e62984c7752b3784bd3c218bb341706b"},
"makeup_erlang": {:hex, :makeup_erlang, "1.0.1", "c7f58c120b2b5aa5fd80d540a89fdf866ed42f1f3994e4fe189abebeab610839", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}], "hexpm", "8a89a1eeccc2d798d6ea15496a6e4870b75e014d1af514b1b71fa33134f57814"},
"metrics": {:hex, :metrics, "1.0.1", "25f094dea2cda98213cecc3aeff09e940299d950904393b2a29d191c346a8486", [:rebar3], [], "hexpm", "69b09adddc4f74a40716ae54d140f93beb0fb8978d8636eaded0c31b6f099f16"},
"mime": {:hex, :mime, "2.0.6", "8f18486773d9b15f95f4f4f1e39b710045fa1de891fada4516559967276e4dc2", [:mix], [], "hexpm", "c9945363a6b26d747389aac3643f8e0e09d30499a138ad64fe8fd1d13d9b153e"},
"mimerl": {:hex, :mimerl, "1.3.0", "d0cd9fc04b9061f82490f6581e0128379830e78535e017f7780f37fea7545726", [:rebar3], [], "hexpm", "a1e15a50d1887217de95f0b9b0793e32853f7c258a5cd227650889b38839fe9d"},
"nimble_parsec": {:hex, :nimble_parsec, "1.4.0", "51f9b613ea62cfa97b25ccc2c1b4216e81df970acd8e16e8d1bdc58fef21370d", [:mix], [], "hexpm", "9c565862810fb383e9838c1dd2d7d2c437b3d13b267414ba6af33e50d2d1cf28"},
"parse_trans": {:hex, :parse_trans, "3.4.1", "6e6aa8167cb44cc8f39441d05193be6e6f4e7c2946cb2759f015f8c56b76e5ff", [:rebar3], [], "hexpm", "620a406ce75dada827b82e453c19cf06776be266f5a67cff34e1ef2cbb60e49a"},
"poison": {:hex, :poison, "6.0.0", "9bbe86722355e36ffb62c51a552719534257ba53f3271dacd20fbbd6621a583a", [:mix], [{:decimal, "~> 2.1", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm", "bb9064632b94775a3964642d6a78281c07b7be1319e0016e1643790704e739a2"},
"ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.7", "354c321cf377240c7b8716899e182ce4890c5938111a1296add3ec74cf1715df", [:make, :mix, :rebar3], [], "hexpm", "fe4c190e8f37401d30167c8c405eda19469f34577987c76dde613e838bbc67f8"},
"telemetry": {:hex, :telemetry, "1.2.1", "68fdfe8d8f05a8428483a97d7aab2f268aaff24b49e0f599faa091f1d4e7f61c", [:rebar3], [], "hexpm", "dad9ce9d8effc621708f99eac538ef1cbe05d6a874dd741de2e689c47feafed5"},
"unicode_util_compat": {:hex, :unicode_util_compat, "0.7.0", "bc84380c9ab48177092f43ac89e4dfa2c6d62b40b8bd132b1059ecc7232f9a78", [:rebar3], [], "hexpm", "25eee6d67df61960cf6a794239566599b09e17e668d3700247bc498638152521"},
}
76 changes: 0 additions & 76 deletions test/create_custom_action_type_test.exs

This file was deleted.

110 changes: 0 additions & 110 deletions test/create_update_pipeline_test.exs

This file was deleted.