Commit Graph

21 Commits

Author SHA1 Message Date
7924ccc70e chore(deps): update dependency prettier to v2.3.2 (#33)
All checks were successful
continuous-integration/drone/push Build is passing
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | patch | `2.3.1` -> `2.3.2` |

---

### Release Notes

<details>
<summary>prettier/prettier</summary>

### [`v2.3.2`](https://github.com/prettier/prettier/blob/master/CHANGELOG.md#&#8203;232)

[Compare Source](https://github.com/prettier/prettier/compare/2.3.1...2.3.2)

[diff](https://github.com/prettier/prettier/compare/2.3.1...2.3.2)

##### Fix failure on dir with trailing slash ([#&#8203;11000](https://github.com/prettier/prettier/pull/11000) by [@&#8203;fisker](https://github.com/fisker))

<!-- prettier-ignore -->

```console
$ ls
1.js  1.unknown
```

</details>

---

### Configuration

📅 **Schedule**: At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box.

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: docker/alpine-tools#33
Co-authored-by: Renovator Bot <renovator@rknet.org>
Co-committed-by: Renovator Bot <renovator@rknet.org>
2021-06-26 21:43:02 +02:00
ffdbac2c75 chore(deps): update dependency prettier to v2.3.1 (#31)
All checks were successful
continuous-integration/drone/push Build is passing
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | patch | `2.3.0` -> `2.3.1` |

---

### Release Notes

<details>
<summary>prettier/prettier</summary>

### [`v2.3.1`](https://github.com/prettier/prettier/blob/master/CHANGELOG.md#&#8203;231)

[Compare Source](https://github.com/prettier/prettier/compare/2.3.0...2.3.1)

[diff](https://github.com/prettier/prettier/compare/2.3.0...2.3.1)

##### Support TypeScript 4.3 ([#&#8203;10945](https://github.com/prettier/prettier/issues/10945) by [@&#8203;sosukesuzuki](https://github.com/sosukesuzuki))

##### [`override` modifiers in class elements](https://devblogs.microsoft.com/typescript/announcing-typescript-4-3/#override)

```ts
class Foo extends  {
  override method() {}
}
```

##### [static index signatures (`[key: KeyType]: ValueType`) in classes](https://devblogs.microsoft.com/typescript/announcing-typescript-4-3/#static-index-signatures)

```ts
class Foo {
  static [key: string]: Bar;
}
```

##### [`get` / `set` in type declarations](https://devblogs.microsoft.com/typescript/announcing-typescript-4-3/#separate-write-types)

```ts
interface Foo {
  set foo(value);
  get foo(): string;
}
```

##### Preserve attributes order for element node ([#&#8203;10958](https://github.com/prettier/prettier/issues/10958) by [@&#8203;dcyriller](https://github.com/dcyriller))

<!-- prettier-ignore -->

```handlebars
{{!-- Input --}}
<MyComponent
  {{! this is a comment for arg 1}}
  @&#8203;arg1="hello"
  {{on "clik" this.modify}}
  @&#8203;arg2="hello"
  {{! this is a comment for arg 3}}
  @&#8203;arg3="hello"
  @&#8203;arg4="hello"
  {{! this is a comment for arg 5}}
  @&#8203;arg5="hello"
  ...arguments
/>
{{!-- Prettier stable --}}
<MyComponent
  @&#8203;arg1="hello"
  @&#8203;arg2="hello"
  @&#8203;arg3="hello"
  @&#8203;arg4="hello"
  @&#8203;arg5="hello"
  ...arguments
  {{on "clik" this.modify}}
  {{! this is a comment for arg 1}}
  {{! this is a comment for arg 3}}
  {{! this is a comment for arg 5}}
/>
{{!-- Prettier main --}}
<MyComponent
  {{! this is a comment for arg 1}}
  @&#8203;arg1="hello"
  {{on "clik" this.modify}}
  @&#8203;arg2="hello"
  {{! this is a comment for arg 3}}
  @&#8203;arg3="hello"
  @&#8203;arg4="hello"
  {{! this is a comment for arg 5}}
  @&#8203;arg5="hello"
  ...arguments
/>
```

##### Track cursor position properly when it’s at the end of the range to format ([#&#8203;10938](https://github.com/prettier/prettier/issues/10938) by [@&#8203;j-f1](https://github.com/j-f1))

Previously, if the cursor was at the end of the range to format, it would simply be placed back at the end of the updated range.
Now, it will be repositioned if Prettier decides to add additional code to the end of the range (such as a semicolon).

<!-- prettier-ignore -->

```jsx
// Input (<|> represents the cursor)
const someVariable = myOtherVariable<|>
// range to format:  ^^^^^^^^^^^^^^^

// Prettier stable
const someVariable = myOtherVariable;<|>
// range to format:  ^^^^^^^^^^^^^^^

// Prettier main
const someVariable = myOtherVariable<|>;
// range to format:  ^^^^^^^^^^^^^^^
```

##### Break the LHS of type alias that has complex type parameters ([#&#8203;10901](https://github.com/prettier/prettier/issues/10901) by [@&#8203;sosukesusuzki](https://github.com/sosukesusuzki))

<!-- prettier-ignore -->

```ts
// Input
type FieldLayoutWith<
  T extends string,
  S extends unknown = { width: string }
> = {
  type: T;
  code: string;
  size: S;
};

// Prettier stable
type FieldLayoutWith<T extends string, S extends unknown = { width: string }> =
  {
    type: T;
    code: string;
    size: S;
  };

// Prettier main
type FieldLayoutWith<
  T extends string,
  S extends unknown = { width: string }
> = {
  type: T;
  code: string;
  size: S;
};

```

##### Break the LHS of assignments that has complex type parameters ([#&#8203;10916](https://github.com/prettier/prettier/issues/10916) by [@&#8203;sosukesuzuki](https://github.com/sosukesuzuki))

<!-- prettier-ignore -->

```ts
// Input
const map: Map<
  Function,
  Map<string | void, { value: UnloadedDescriptor }>
> = new Map();

// Prettier stable
const map: Map<Function, Map<string | void, { value: UnloadedDescriptor }>> =
  new Map();

// Prettier main
const map: Map<
  Function,
  Map<string | void, { value: UnloadedDescriptor }>
> = new Map();

```

##### Fix incorrectly wrapped arrow functions with return types ([#&#8203;10940](https://github.com/prettier/prettier/issues/10940) by [@&#8203;thorn0](https://github.com/thorn0))

<!-- prettier-ignore -->

```ts
// Input
longfunctionWithCall12("bla", foo, (thing: string): complex<type<something>> => {
  code();
});

// Prettier stable
longfunctionWithCall12("bla", foo, (thing: string): complex<
  type<something>
> => {
  code();
});

// Prettier main
longfunctionWithCall12(
  "bla",
  foo,
  (thing: string): complex<type<something>> => {
    code();
  }
);
```

##### Avoid breaking call expressions after assignments with complex type arguments ([#&#8203;10949](https://github.com/prettier/prettier/issues/10949) by [@&#8203;sosukesuzuki](https://github.com/sosukesuzuki))

<!-- prettier-ignore -->

```ts
// Input
const foo = call<{
  prop1: string;
  prop2: string;
  prop3: string;
}>();

// Prettier stable
const foo =
  call<{
    prop1: string;
    prop2: string;
    prop3: string;
  }>();

// Prettier main
const foo = call<{
  prop1: string;
  prop2: string;
  prop3: string;
}>();

```

##### Fix order of `override` modifiers ([#&#8203;10961](https://github.com/prettier/prettier/issues/10961) by [@&#8203;sosukesuzuki](https://github.com/sosukesuzuki))

```ts
// Input
class Foo extends Bar {
  abstract override foo: string;
}

// Prettier stable
class Foo extends Bar {
  abstract override foo: string;
}

// Prettier main
class Foo extends Bar {
  abstract override foo: string;
}
```

</details>

---

### Configuration

📅 **Schedule**: At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻️ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box.

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: docker/alpine-tools#31
Co-authored-by: Renovator Bot <renovator@rknet.org>
Co-committed-by: Renovator Bot <renovator@rknet.org>
2021-06-06 21:17:32 +02:00
3e59faabe0 chore(deps): update dependency thegeeklab/url-parser to v0.2.5
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2021-05-25 16:00:22 +00:00
50fa775208 chore(deps): update docker digests
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2021-05-13 07:00:18 +00:00
7ec13a1d7a chore(deps): update dependency thegeeklab/url-parser to v0.2.4
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2021-05-10 08:30:36 +00:00
2c3ea8b6da chore(deps): update dependency prettier to v2.3.0 (#26)
All checks were successful
continuous-integration/drone/push Build is passing
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | minor | `2.2.0` -> `2.3.0` |

---

### Release Notes

<details>
<summary>prettier/prettier</summary>

### [`v2.3.0`](https://github.com/prettier/prettier/blob/master/CHANGELOG.md#&#8203;230)

[Compare Source](https://github.com/prettier/prettier/compare/2.2.1...2.3.0)

[diff](https://github.com/prettier/prettier/compare/2.2.1...2.3.0)

🔗 [Release Notes](https://prettier.io/blog/2021/05/09/2.3.0.html)

### [`v2.2.1`](https://github.com/prettier/prettier/blob/master/CHANGELOG.md#&#8203;221)

[Compare Source](https://github.com/prettier/prettier/compare/2.2.0...2.2.1)

[diff](https://github.com/prettier/prettier/compare/2.2.0...2.2.1)

##### Fix formatting for AssignmentExpression with ClassExpression ([#&#8203;9741](https://github.com/prettier/prettier/pull/9741) by [@&#8203;sosukesuzuki](https://github.com/sosukesuzuki))

<!-- prettier-ignore -->

```js
// Input
module.exports = class A extends B {
  method() {
    console.log("foo");
  }
};

// Prettier 2.2.0
module.exports = class A extends (
  B
) {
  method() {
    console.log("foo");
  }
};

// Prettier 2.2.1
module.exports = class A extends B {
  method() {
    console.log("foo");
  }
};
```

</details>

---

### Configuration

📅 **Schedule**: At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻️ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box.

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: docker/alpine-tools#26
Co-authored-by: Renovator Bot <renovator@rknet.org>
Co-committed-by: Renovator Bot <renovator@rknet.org>
2021-05-09 23:14:53 +02:00
5cfb74958c chore(deps): pin docker digests
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2021-05-09 16:00:19 +00:00
b9fc02e4a3
fix arm image
All checks were successful
continuous-integration/drone/push Build is passing
2021-05-09 17:30:04 +02:00
266e355d96 switch to nodejs alpine image and add prettier (#23)
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: Robert Kaussow <mail@geeklabor.de>
Reviewed-on: docker/alpine-tools#23
Co-authored-by: Robert Kaussow <xoxys@rknet.org>
Co-committed-by: Robert Kaussow <xoxys@rknet.org>
2021-05-09 17:27:43 +02:00
e381dd6d23 chore(deps): update docker digests
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2021-04-14 20:00:19 +00:00
c6ed9ea042 chore(deps): update dependency thegeeklab/url-parser to v0.2.3 (#21)
All checks were successful
continuous-integration/drone/push Build is passing
chore(deps): update dependency thegeeklab/url-parser to v0.2.3

Reviewed-on: docker/alpine-tools#21
Co-Authored-By: Renovator Bot <renovator@rknet.org>
Co-Committed-By: Renovator Bot <renovator@rknet.org>
2021-04-09 11:03:22 +02:00
afeebd97df chore(deps): update docker digests
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2021-03-31 19:01:09 +00:00
464cfb2b61 chore(deps): update docker digests
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2021-03-25 23:01:08 +00:00
32e3883e57 chore(deps): update arm32v7/alpine:3.13 docker digest to db5f021
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2021-02-17 21:02:07 +00:00
a776d5baac chore(deps): update dependency thegeeklab/url-parser to v0.2.2
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2021-02-15 21:01:41 +00:00
f6530d89e1
fix: use arm binaries for arm images
All checks were successful
continuous-integration/drone/push Build is passing
2021-02-15 21:35:07 +01:00
d063c42c9b chore(deps): update dependency hairyhenderson/gomplate to v3.9.0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2021-01-29 13:01:26 +00:00
66918e2291 chore(deps): update arm32v7/alpine:3.13 docker digest to 817f5bc
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2021-01-29 02:01:32 +00:00
9e89c22ea0 chore(deps): update arm32v7/alpine docker tag to v3.13 (#9)
All checks were successful
continuous-integration/drone/push Build is passing
chore(deps): update arm32v7/alpine docker tag to v3.13

Reviewed-on: docker/alpine-tools#9
2021-01-18 22:04:53 +01:00
a913d0914c chore(deps): pin docker digests (#8)
All checks were successful
continuous-integration/drone/push Build is passing
chore(deps): pin docker digests

Reviewed-on: docker/alpine-tools#8
2021-01-18 21:12:28 +01:00
7e3cb99033
build multiarch images
Some checks reported errors
continuous-integration/drone/push Build encountered an error
2021-01-18 20:41:40 +01:00