Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

fix(deps): update kosko monorepo (major) #463

Merged
merged 2 commits into from
Jun 9, 2021

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 31, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@kosko/env (source) ^1.0.3 -> ^2.0.1 age adoption passing confidence
@socialgouv/kosko-charts ^4.8.2 -> ^6.0.0 age adoption passing confidence

Release Notes

tommy351/kosko

v2.0.1

Compare Source

Patch Changes

v2.0.0

Compare Source

Major Changes
  • #​73 b90c724 Thanks @​tommy351! - Add support for browser. Several APIs were introduced in this release.

    • Loader interface
    • createEnvironment function
    • createAsyncEnvironment function
    • createNodeCJSEnvironment function
    • createNodeESMEnvironment function
    • createSyncEnvironment function
    • createSyncLoaderReducers function
    • createAsyncLoaderReducers function

    The following example shows how to use this package in browsers.

    import env, { createLoaderReducers } from "@​kosko/env";
    
    env.setReducers(reducers => [
      ...reducers,
      ...createAsyncLoaderReducers({
        global: () =>
          import("./environments/dev/index.js").then(mod => mod.default),
        component: name =>
          import(`./environments/dev/${name}.js`).then(mod => mod.default)
      })
    ]);

    BREAKING CHANGES: The following APIs were changed in this release.

    • Environment class → Environment interface
    • SyncEnvironment class → createNodeCJSEnvironment function
    • AsyncEnvironment class → createNodeESMEnvironment function

    You don't have to change anything, unless you initialize these classes manually.

    // Before
    const { Environment } = require("@​kosko/env");
    const env = new Environment(process.cwd());
    
    // After
    const { createNodeCJSEnvironment } = require("@​kosko/env");
    const env = createNodeCJSEnvironment({ cwd: process.cwd() });
Patch Changes

v1.1.0

Compare Source

v1.0.4

Compare Source

SocialGouv/kosko-charts

v6.0.0

Compare Source

BREAKING CHANGES
  • components app create functions are now async !
import { create } from "@​socialgouv/kosko-charts/components/hasura";

- export default (): { kind: string }[] => {
-   const manifests = create("hasura", { env })
    // [...]
- }
+ export default async (): Promise<{ kind: string }[]> => {
+   const manifests = await create("hasura", { env })
    // [...]
+ }
  • the fist args of the create function must be an name !
import { create } from "@&#8203;socialgouv/kosko-charts/components/hasura";

-const manifests = create({
+const manifests = create("hasura", {
  env,
});

Co-authored-by: Renovate Bot [email protected]
Co-authored-by: Douglas DUTEIL [email protected]

v5.6.6

Compare Source

Bug Fixes
  • Use preprod suffix for Github env. (5b3e796)

v5.6.5

Compare Source

Bug Fixes
  • getHarborImagePath use app name when project is missing. (a0dced8)

v5.6.4

Compare Source

Bug Fixes
  • Swap project and branch name. (33bbd7f)
  • Update tests snapshots. (a9016f4)

v5.6.3

Compare Source

Bug Fixes
  • Annotations and labels. (0781462)

v5.6.2

Compare Source

Bug Fixes
  • Extract dev branch name. (2567d32)

v5.6.1

Compare Source

Bug Fixes
  • Prefix image github sha. (6c228a1)

v5.6.0

Compare Source

Features

v5.5.0

Compare Source

v5.4.0

Compare Source

Features

5.3.5 (2021-05-10)

Bug Fixes

5.3.4 (2021-05-06)

Bug Fixes

5.3.3 (2021-04-15)

Bug Fixes

5.3.2 (2021-04-15)

Bug Fixes

5.3.1 (2021-04-15)

Bug Fixes

v5.3.5

Compare Source

Bug Fixes

v5.3.4

Compare Source

Bug Fixes

v5.3.3

Compare Source

Bug Fixes

v5.3.2

Compare Source

Bug Fixes

v5.3.1

Compare Source

Bug Fixes

v5.3.0

Compare Source

Bug Fixes
Features

v5.2.0

Compare Source

Features

5.1.4 (2021-04-09)

Bug Fixes

5.1.3 (2021-04-07)

Bug Fixes

5.1.2 (2021-03-27)

Bug Fixes

5.1.1 (2021-03-25)

Bug Fixes

v5.1.4

Compare Source

Bug Fixes

v5.1.3

Compare Source

Bug Fixes

v5.1.2

Compare Source

Bug Fixes

v5.1.1

Compare Source

Bug Fixes

v5.1.0

Compare Source

Features

v5.0.0

Compare Source

Bug Fixes
  • release: husky conflict with npm during releases (19f851a)
BREAKING CHANGES
{
 "resolutions": {
    "@&#8203;kosko/cli": "1.1.0"
  },
}
  • You will now need to manually install your kosko related dependencies !

As kosko, @kosko/env, etc... can have breaking version, we chose to put the versioning responsibility on the user side.

v4.10.2

Compare Source

Bug Fixes

v4.10.1

Compare Source

Bug Fixes

v4.10.0

Compare Source

Features

4.9.5 (2021-03-07)

Bug Fixes

4.9.4 (2021-03-05)

Bug Fixes

4.9.3 (2021-03-04)

Bug Fixes

4.9.2 (2021-02-26)

Bug Fixes

4.9.1 (2021-02-24)

Bug Fixes

v4.9.5

Compare Source

Bug Fixes

v4.9.4

Compare Source

Bug Fixes

v4.9.3

Compare Source

Bug Fixes

v4.9.2

Compare Source

Bug Fixes

v4.9.1

Compare Source

Bug Fixes

v4.9.0

Compare Source

Features
  • deps: update socialgouv/docker images docker tags to v4.6.0 (#​395) (f12f2f9)

4.8.3 (2021-02-22)

Bug Fixes

4.8.2 (2021-02-19)

Bug Fixes

4.8.1 (2021-02-19)

Bug Fixes

v4.8.3

Compare Source

Bug Fixes

Configuration

📅 Schedule: "before 3am on the first day of the month" in timezone Europe/Paris.

🚦 Automerge: Enabled.

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/major-kosko-monorepo branch 5 times, most recently from 9dea048 to 8c533e3 Compare April 13, 2021 17:38
@renovate renovate bot changed the title fix(deps): update dependency @socialgouv/kosko-charts to v5 fix(deps): update kosko monorepo (major) Apr 13, 2021
@renovate renovate bot force-pushed the renovate/major-kosko-monorepo branch 9 times, most recently from 8db8a84 to 06239e1 Compare April 20, 2021 20:12
@renovate renovate bot force-pushed the renovate/major-kosko-monorepo branch 4 times, most recently from bfbdddb to f899fce Compare April 22, 2021 22:17
@renovate renovate bot force-pushed the renovate/major-kosko-monorepo branch from f899fce to 73e6e8f Compare June 9, 2021 11:16
@douglasduteil douglasduteil merged commit 8d2cd43 into master Jun 9, 2021
@douglasduteil douglasduteil deleted the renovate/major-kosko-monorepo branch June 9, 2021 11:29
SocialGroovyBot added a commit that referenced this pull request Jun 9, 2021
## [2.2.13](v2.2.12...v2.2.13) (2021-06-09)

### Bug Fixes

* **deps:** update kosko monorepo (major) ([#463](#463)) ([8d2cd43](8d2cd43))
@SocialGroovyBot
Copy link
Member

🎉 This PR is included in version 2.2.13 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants